A comparison of the Default wordpress theme (v2.7 alpha vs v2.6.3). In short, my free/premium themes should continue to work in v2.7. Just that features like threaded comments and sticky post styling will not be available. Yet
Old: <div class=”post”>
New: <div <?php post_class() ?>>
Found: multiple files
Display the classes for the post div e.g class=”sticky category-uncategorized tag-untagged”. Using this function will break your theme on older version of Wordpress (< v2.7). Not using this, however, you are unable to style your individual sticky/category/tag post. Workaround would be to do a if function_exists() check.
Old: <?php include (TEMPLATEPATH . '/searchform.php'); ?>
New: <?php get_search_form(); ?>
Found: multiple files
Will first attempt to locate the searchform.php file in either the child or the parent, then load it. If it doesn’t exist, then the default search form will be displayed. Probably can safely ignore this for now because if you use this template function, your theme will not be backward compatible to older version of Wordpress (< v2.7).
New: <link rel="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
Found: header.php
Add Atom feed link
New: <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
Found: header.php
Add script for threaded comments if current page is a single post, is a page, or is an attachment.
New CSS classes in style.css, mainly for the threaded comments
.thread-alt {
.thread-even {
.depth-1 {
.even, .alt {
.commentlist li ul li
#commentform {
#respond:after
.commentlist li ul li
.children
comments.php: Major code changes. I think this post on Wordpress 2.7 Comments Enhancements will do a better job of explaining the changes.
What's Next?
»» Subscribe to Feed
» Leave a Comment
Related Posts:
» Theme Update: OneNews 2.0
» Upcoming Wordpress Theme: Food Recipe
» Upcoming Wordpress Theme: Celebrity Gossip
» Newer Post: WP Theme: eVid
« Previous Post: WP Theme: Arthemia








Which version of WordPress is recommended – in particular for a Blog that will be designed to support a real estate agent business. We have a website that is slowly climbing towards page one of Google searches usingn our most popular real estate search terms for our area. We are currently on pages 2, 3 and 7 for the most popular three search terms. We believe the blog will help our business and hopefully bring visitors to our website.
Most people don’t choose the version of wordpress based on niche but it’s recommended to go with the latest version
Just downloaded and installed your Wordpress Theme Google Chrome. Looks good, thank you.
beta version right?
Alpha version actually but should still be valid.
Very useful, thanks!
Thank for your sharing. Very useful.
I am using your GenkiTheme fixed width. Where do I go to get the most current version of my theme compatible with WP 2.7 or is it
already the most compatible version?
P.S.
Is there any way to widen the blue page tabs at the top border of the logo banner to enable the text to fit. The tabs are very limited in width and cannot hold my complete page titles. I am sure it is some setting in the stylesheet…I tried a couple of the #tabs selectors but nothing worked. I will pay for the adjustment.
Thanks
Matt
You can get the latest GenkiTheme fixed width here.
To increase the page tabs, you need to increase the width of bg_sidetab.gif, and in style.css -> change the width for #tabs li a to the new width of bg_sidetab.gif.