Archive by Author

How to show multiple pages on one page

code How to show multiple pages on one pageAs we know, query_posts is awesome. We are not only be able to retrieve posts but also pages by specifying its IDs on your theme templates. However if we want to multiple pages by using query_posts,the first thing we guess won’t work but here how to achieve it.

Read more

How to fix More Fields 1.3 for Wordpress 2.9.1

more fields How to fix More Fields 1.3 for Wordpress 2.9.1More fileds is very useful plugin but unfortunately the current version (1.3) has a problem and it’s reported as broken :( but here how to fix it!


Read more

How to exclude categories from RSS feed

rss How to exclude categories from RSS feedSometime we want to exclude some categories from RSS feeds, for instance, when we use Wordpress as CMS, or simply when we use some categories for admin purposes and so on. Don’t worry, it’s so easy to exclude specific category from your Wordpress feeds.


Read more

How to add span tag into category or page navigation

thumbnails How to add span tag into category or page navigationWe like to use rounded corners to highlight navigation using CSS sliding doors technique, don’t we?

To achieve this, each navigation item would need to be sorrounded by span tag. When we hard-code the navigation it’s not a problem, but when we have to use wp_list_categories or wp_list_pages, it’s becoming a problem.

Read more

How to limit the characters on post title

thumb How to limit the characters on post titleSometime, especially news type of contents, titles of post can be long and mess your neat layout. This is how to limit the post titles.
Read more

How to exclude specific categories from the_category()

code How to exclude specific categories from the category()The templates tag, the_category(), is very handy to output all categories to which a post belongs. However, sometimes, we don’t want to show the all cateogries when we use some categories for admin purposes. For example, the popular plugin, Featured Content Gallery requires you to specify a category for the featured content and you don’t want to show the featured content category in the list, and so on.

Read more