WordPress 2.7 released

Martin Brinkmann
Dec 11, 2008
Updated • Oct 8, 2012
Internet, Software
|
7

The WordPress team has published version 2.7 of WordPress yesterday. The first thing that users will notice is the new administration interface which was completely redone to optimize processes. The development team claims that nearly every task in WordPress 2.7 will take fewer clicks than it took in previous versions of the blogging platform.

The development focus was usability as WordPress 2.7 brings in a few exciting new features to the table. The long awaited option to moderate comments from the admin interface, mass editing of posts, automatic upgrades of plugins and the blog software itself are just a few of the new features.

Another new and exciting option is the ability to remove and position elements on the screen. This streamlines the WordPress admin interface quite a bit by bringing the needed elements closer together while removing everything that is not needed. Well, almost everything. Some elements cannot be removed obviously like the post form.

It will take some time getting used to the new WordPress admin interface as it moves the menu entries from the header to the left menu.

The update should not pose too many difficulties. The only problem that you can encounter are plugin incompatibilities. The Simple Tags plugin was one out of a dozen plugins that was not working with WordPress and you might have noticed display problems here at Ghacks earlier thanks to that. There is however an easy temporary fix for that to make the plugin compatible.

All that needs to be done is to edit the simple-tags.php file. Look for the line

if (version_compare($wp_version, '2.5', '>='))

and replace it with the following

if ( strpos($wp_version, '2.5') !== false || strpos($wp_version, '2.6') !== false )

This should ensure compatibility.

WordPress 2.7 is not the latest version anymore. The developers have updated WordPress several times in the meantime, and it is recommended to download the latest version directly from the official WordPress homepage.

Advertisement

Tutorials & Tips


Previous Post: «
Next Post: «

Comments

  1. LinkLaunder.com said on January 18, 2009 at 2:32 pm
    Reply

    Thanks for the tip. I had problems with a version of my plugin that all of a sudden returned a fatal error. Above post made me find the problem and fix it. Thanks

  2. James said on December 14, 2008 at 7:49 am
    Reply

    Fantastic release, I’ve just started upgrading my blogs to use it. Nice clean and easy to use interface.

  3. rruben said on December 11, 2008 at 9:40 pm
    Reply

    Sounds promising. Time to upgrade!

  4. PapyGeek said on December 11, 2008 at 8:02 pm
    Reply

    Simple tags has been updated :

    http://wordpress.org/extend/plugins/simple-tags/

  5. Reactive said on December 11, 2008 at 3:21 pm
    Reply

    I didn’t really have this line “if (version_compare($wp_version, ‘2.5’, ‘>=’))” but I had “if ( strpos($wp_version, ‘2.5’) !== false || strpos($wp_version, ‘2.6’) !== false )” so I added “|| strpos($wp_version, ‘2.7’) !== false ” in the if and it now works.

Leave a Reply

Check the box to consent to your data being stored in line with the guidelines set out in our privacy policy

We love comments and welcome thoughtful and civilized discussion. Rudeness and personal attacks will not be tolerated. Please stay on-topic.
Please note that your comment may not appear immediately after you post it.