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

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

Flutter是一个管理员能够自定义添加单选按钮,文件上传,图片上传,复选框等的插件,此插件的另一个主要特点是简化模板。 (more…)
This entry was posted
on Sunday, November 1st, 2009 at 2:37 PM and is filed under Plugins, WordPress.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
October 2nd, 2009 Hack, 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
This entry was posted
on Friday, October 2nd, 2009 at 6:08 PM and is filed under Hack, WordPress.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
September 10th, 2009 Theme, WordPress
假如你正在开发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
开发愉快!~
This entry was posted
on Thursday, September 10th, 2009 at 4:48 PM and is filed under Theme, WordPress.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
August 14th, 2009 Plugins, WordPress
这是一个叫做infinite scroll的Plugins,替代了下一页的翻页效果,让下拉条无限循环,用户浏览文章的时候,只用没头没脑的下拉就可以了。
Download the Wordpress Plugin
This entry was posted
on Friday, August 14th, 2009 at 3:45 PM and is filed under Plugins, WordPress.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.
August 8th, 2009 Hack, Mixed, WordPress
做以下的定义,修改第三行的代码,放到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 );
}
?>
This entry was posted
on Saturday, August 8th, 2009 at 3:54 PM and is filed under Hack, Mixed, WordPress.
You can follow any responses to this entry through the RSS 2.0 feed.
You can leave a response, or trackback from your own site.