0

将WordPress扩展成CMS的12个必要插件

经过过去几年的成长,WordPress已经不再仅仅是一个博客平台了。人们现在把它当作一个CMS(内容管理系统)来驱动不同类型的网站。将Wordpress作为标准的CMS使用,建立主题和分类结构与内容的时候经常会需要一些有创造性的想法。在本文中,我们向你介绍12款非常有用的插件,这将为你的WordPress安装扩展CMS功能。

Pods CMS

wordpress cms

Pods是一个为WordPress 准备的CMS框架.他是一个在WordPress顶部的插件, 允许你为自定义添加显示不同类型的内容。

Flutter

wordpress cms

Flutter是一个管理员能够自定义添加单选按钮,文件上传,图片上传,复选框等的插件,此插件的另一个主要特点是简化模板。 (more…)

0

WordPress技巧(9): 未着装Theme Starkers

Starkers: the completely naked theme for WordPress

假如你是新手,又不想从头写那些反复的theme基本文件,请看这里。一款未穿上衣服的theme衣架。适合初学者全面了解,wordpress theme 的文件框架。

这里还有几个测试xml,可以import一下,看看效果。

Dummy Content:

WP XML Test Data Import

When developing themes one of the biggest frustrations can be the lack on content on a new installation of WordPress. Self Conclusion has put together an XML file with several posts and pages of dummy content with tags, categories, comments, links, lists, and everything you will need to test a theme. You can easily download this file and import it into WordPress to save the time of adding your own dummy content.

Sandbox Dummy Content

For Sandbox design competitions, a set of dummy content was released. It achieves the same purpose as the content from Self Conclusion that was just mentioned.

WordPress Test Post Pack

Think Design Blog also has a pack of dummy content that can be downloaded and imported into WordPres

0

WordPress技巧(8): WordPress Theme Bundle

假如你正在开发WP的theme,那么这个此篇文章正是你所需要的,这是有关wp theme bundle的tip.

假如你在使用Mac下的TextMate,或者Windows下的E-TextEditor,Check Out

1. cd ~/Library/Application\ Support/TextMate/Bundles/
2. svn co http://svn.sofanaranja.com/projects/brettbundles/trunk/Bundles/Wordpress\ Theme.tmbundle WordPress\ Theme.tmbundle或者

直接下载: Wordpress_Theme.tmbundle.zip

开发愉快!~

0

WordPress技巧(7): 无限循环的下拉条

这是一个叫做infinite scroll的Plugins,替代了下一页的翻页效果,让下拉条无限循环,用户浏览文章的时候,只用没头没脑的下拉就可以了。
Download the WordPress Plugin

0

WordPress技巧(6): 替换”read more”

做以下的定义,修改第三行的代码,放到functions.php文件中,all will be ok!

<?php

$custom_more = "Continue reading this post";
add_filter( 'the_content_more_link', 'my_more_link', 10, 2 );

function my_more_link( $more_link, $more_link_text ) {
	return str_replace( $more_link_text, $custom_more, $more_link );
}
?>