Wordpress 2.7 Interface designDay by day, the wordpress engineers have been adding more features and functionality to WordPress 2.7, and as they do, their excitement shows as they have been slowly leaking previews and imagery of the new administrative interface. They have just released another post looking for icon designers to help out with icons for the newest release of the 2.7 interface.

With the release date for WordPress 2.7 set for November 10, they’re going to need to find someone who can crank out some icons very quickly.

The icons:
We’ll need icons for each of the main navigation sections, plus a matching pair of list/excerpt view icons for the table screens like Edit Posts. That’s a total of 13, and for the navigation icons we’ll also need a larger size for use in the screen headers. Some of the sections have natural iconography, while others may be more challenging. The sections are: Dashboard, Posts, Media, Links, Pages, Comments, Appearance, Settings, Users, Plugins, Tools.

The style:
Icons should be subtle, with a classic/designed look, nothing cartoonish. Thin lines. Maybe a little old-fashioned looking. They’ll be grayscale by default, possibly with a color version for active menu items.

The timing:
Fast, fast, fast. 2.7 is due to release on November 10. That means icons need to be ready within two weeks, give or take.

Is there anything in particular that you’d like to see in the new 2.7 interface?


With the popularity of WordPress constantly growing, and the same holding true for the Apple iPhone, I’d love to see some WordPress developers and iPhone application developers put together a WordPress admin application for the iPhone that could be downloaded from the AppStore. Whether the application was free or paid, I think it’d get a great response from both the WordPress and iPhone community.

There are iPhone enabled admin themes for WordPress, but they just don’t offer the same usability that one might get from an actual iPhone application. Any takers? I might be willing to partially subsidize the development… very partially.


Out of the 3 blogs that I manage, 1of the 3 showed a note atop the admin section that WordPress had an update available. The other 2 didn’t show anything, however, they did all have a note in the WordPress Development Blog section of the dashboard that the download was available but hadn’t been made public yet.

Version 2.5.1 of WordPress is now available. It includes a number of bug fixes, performance enhancements, and one very important security fix. We recommend everyone update immediately, particularly if your blog has open registration. The vulnerability is not public but it will be shortly. In addition to the security fix, 2.5.1 contains many bug fixes.

Get your copy now! Click here to download WordPress 2.5.1


With the release of WordPress 2.5, the new administration dashboard displays incoming blog links by querying Google Blog Search rather than Technorati as it had in the past. Does this mean that Google Blog Search will become the new standard for bloggers and networking blogs? Or is it simply because Google has the best search options on earth and the WordPress creators feel that Google will do a better job of displaying all links to a blog than Technorati ever could. Either way, I’m happy to see the new WordPress using Google Blog Search rather than Technorati. I have a Technorati account, but I never really spent the time to familiarize myself with it.

Any thoughts on Google Blog Search vs. Technorati in terms of incoming blog link listings?

PS – If you’d like to add Google Blog Search to your list of sites to ping in your WordPress system, simply:

  1. Log into your WordPress admin area
  2. Click on “Settings”
  3. Click on “Writing”
  4. Scroll to the bottom of the page and add http://blogsearch.google.com/ping/RPC2 to a new line
  5. Save changes and enjoy the extra traffic ;-)


With the release of WordPress 2.5 and the further integration of tags and tags support, as well as the great integration of media and the media gallery, I’m finding myself wanting to upgrade to a theme that supports all of the new features that are offered in the WordPress administration.

Has anyone found any themes that are designed and built specifically for WordPress 2.5? If you’ve found some themes, or if you make your own themes, send me a link and I’ll post them here.


The new and heavily anticipated version of WordPress, WordPress 2.5, is now available for download and will start making users happy immediately. The new and improved WordPress 2.5 has shifted from a standard user interface to a new user interface that puts a heavier focus on writing. In addition to the better focus on writing (since WordPress is a blogging application) there have been improvements in the WYSIWIG editor as well as in the plugins manager, now allowing plugins to be updated automatically, which is a really nice feature.

Download the new WordPress 2.5 today and share your thoughts on the new features and improvements


Warning: array_key_exists() [function.array-key-exists]: The first argument should be either a string or an integer in /your-sitepath/wp-includes/category-template.php on line 176

This problems stems from line 176 as stated above – some people have said that updating their wordpress theme worked, however, a simple change to line 176 seems to work perfectly.

Change line 176 from:

if(array_key_exists($category, $categories))

To

if(array_key_exists('$category', $categories))

Don’t see the difference? Just add single quotes around the first $category variable. Make sure they are not the curly single quotes.