Category: WordPress

WordPress 2.8 is now RC1

June 8th, 2009 | 2 Comments

WordPress version 2.8 Release Candidate 1 has been released.

You can download it here.

For more information, click here, or you can click here for the changelog.


WordPress 2.8 now in beta 2

May 24th, 2009 | No Comments

WordPress 2.8 development is now in beta 2.

Click here to download.

For more information, click here.


Disable automatic feed links in header for WordPress 2.8

May 23rd, 2009 | No Comments

WordPress 2.8 provides a new function, automatic_feed_links().

This function will enables the automatic output of feed links, including the comment feed in the header area of the document.

To disable this feature, paste this code in function.php file.

automatic_feed_links(false);

WordPress 2.8 new Theme Installer routines

May 17th, 2009 | No Comments

WordPress finally includes theme installer in version 2.8.

add-theme

Therefore, we can now  browse and install new theme from the dashboard.

search

There is also a function to upload theme.

upload

Click here to download WordPress 2.8 Beta 1


Create horizontal categories menu in WordPress without CSS

May 14th, 2009 | No Comments

To create a horizontal categories menu separated by ‘ | ‘ in WordPress, use this code.

<?php
echo str_replace('<br />',' | ',
wp_list_categories('style=&echo=0&title_li='));
?>