Nov52008

Tips on How to get ready for WordPress 2.7

David Cheong


  

The new WordPress 2.7 will be out soon after the previous WordPress updates I had, if you are one of the WordPress theme developer, you can get ready for the new version of WordPress 2.7. The new WordPress will bring a new visual design, which is almost completely implemented, but there are still a few areas that aren’t quite finished in their Beta 1.

WordPress 2.7

WordPress 2.7

Some of the theme developer already making their way to build themes that are compatible for the new WordPress 2.7.

A reference of how to enhance your comments file, from Justin Tadlock’s early preparation for 2.7 and Otto’s WordPress 2.7 Comments enhancement.

Comments Enhancement Steps :
If you want your themes to be backward compatible, all you need to do is, check for the wp_list_comments function,

if (function_exists(’wp_list_comments’)) :
// new comments.php stuff
else :
// old comments.php stuff
endif;

While according to Justin steps, you can actually look for the functions.php, open it and add the following line :


<?php

add_filter(’comments_template’, ‘legacy_comments’);

function legacy_comments($file) {

if(!function_exists(’wp_list_comments’)) : // WP 2.7-only check

$file = TEMPLATEPATH . ‘/legacy.comments.php’;

endif;

return $file;

}

?>

And thats all you need to filter the templates.

    My Make Money Online 3 Advice

1. You can earn money by create a WordPress theme, if your theme are popular, have quality and unique. You gain money by selling the themes you created.
2. By giving out free WordPress Theme, you gain traffic and popularity once your themes are nice and its free. You gain traffic and earn revenues when you provide free WordPress theme downloads.
3. Some advertising company or local company might hire you to design a theme for their website. You gain money when they hire you to create one theme for their website.

You might want to read these post also :



The Planet



If you're new here, subscribe to my RSS feed. Thanks for visiting!



  1. PeteNovember 15th, 2008

Leave a Reply

Contact us to advertise here Contact us to advertise here
Get Chitika eMiniMalls Earn money when you search
TwitterCounter for @davcheong