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 or 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 to 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.
Related posts:
Wordpress 2.5.1 releasedWordpress 2.7.1 Update
Wordpress 2.5 released
Wordpress 2.5 coming soon
Upgrading to Wordpress 2.3
Wordpress 2.8.2 Security Patch
Wordpress 2.8
Don’t upgrade to Wordpress 2.3 yet
7 Responses to “Wordpress 2.7”
Trackbacks/Pingbacks
-
[...] following article about Wordpress 2.7 is from our content partner Ghacks. The Wordpress team has published version 2.7 of Wordpress [...]
-
[...] Wordpress 2.7 [...]


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.
Simple tags has been updated :
http://wordpress.org/extend/plugins/simple-tags/
Sounds promising. Time to upgrade!
Fantastic release, I’ve just started upgrading my blogs to use it. Nice clean and easy to use interface.
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