Mastering Your WordPress 2.7 Theme & Admin Area: Tips and Tricks
Lot of news flying around about the release of WordPress 2.7, featuring new Administration Panel interface to make WordPress more usable and accessible. Significant features and redesigns was added to WordPress 2.7 to make blogging on the new Dashboard Panel more valuable than ever.
You may find your Themes no longer work the way you are used to. It could be that they might be broken, because something in WordPress that was fundamental to them changed, but it's also possible that you can get them working again by updating some settings, or maybe just a small edit.
This post will highlight WordPress 2.7 HOW-TO get your theme working again by updating some settings and represent some of the best and significant features added to your Administration Panel.
So let’s get started and don’t forget to subscribe to our RSS-Feed and visit my twitter page : nourayehia if you want to follow to keep track on our next post.
1. Enhancing your WordPress 2.7 Theme
1.1. Enhancing Comment Display - Threading, Paging, etc.
WordPress 2.7 includes a lot of new enhancements, but one of the big ones is the new comment functionality. Comments can be threaded, paged, etc. Making your theme’s comments compatible with WordPress 2.7 should be your first step when you edit your theme files. Otto has written a detailed post on the new comment enhancements in WordPress 2.7.
For details on how to update your theme to take advantage of these new features, please see the Enhanced Comment Display article.
1.2. Make this post sticky
Previously we had to use a plug-in to place a post at the top of the front page for posts and keep it there after new posts are made. With WordPress 2.7 you are now able to do this by just selecting a check box in your admin area > Edit Post > Publish panel > Visibility: Public and click edit.
1.3. Post Classes
Previously we used the code below to wrap a div around each post with a class=“post�
<div id="post-<?php the_ID(); ?>" class="post">
With WordPress 2.7 a new function for post classes is included, which will help theme authors perform simple styling and formating for the post area.
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
The new function is post_class(), where you will be able to to add your own classes as well.
<div id="post-<?php the_ID(); ?>" <?php post_class('style'); ?>>
The out put of this function is
<div class="post sticky hentry category-icons style" id="post-5966">
This will add a number of classes to the div: post, category-slug, tag-slug, class ’sticky’ (if this post was marked as sticky from the admin area as mentioned in the previous point) and your specified class name.
1.4. wp page menu
Template Tag wp_page_menu acts as a wrapper for wp_list_pages, displays a list of WordPress Pages as links and support for Home page.
Because wp_page_menu() acts as a wrapper for wp_list_pages(), all of the wp_list_pages() parameters can be used with this Template Tag.
The following example causes "Home" to be added to the beginning of the list of Pages displayed. In addition, the Pages wrapped in a div element, listed under the title, "Page Menu", and Page IDs 5, 9, and 23, are excluded from the list of Pages displayed.
<?php wp_page_menu('show_home=1&exclude=5,9,23&menu_class=page-navi&title_li=<h2>' . __('Page Menu') . '</h2>'); ?>
The output is something like this, where you will be able to have a complete control on styling the menu item and styling the menu item of the current page
<div class="page-navi"><ul><li><a href="https://www.noupe.com">Home</a></li><li class="page_item page-item-10 current_page_item"><a title="About Noupe" href="https://www.noupe.com/about">About Noupe</a></li><li class="page_item page-item-43"><a title="Advertise" href="https://www.noupe.com/advertise">Advertise</a></li><li class="page_item page-item-1374"><a title="Noupe Archive" href="https://www.noupe.com/archive">Noupe Archive</a></li></ul></div>
When you check the HTML output you will see “current_page_item� class name added to current menu item.
1.5. Logout Link
wp_logout_url is a new template function for WordPress 2.7, this will redirect the user who has logged out back to the page where the link was clicked.
<a href="<?php echo wp_logout_url(); ?>">Logout</a>
2. New Admin Area Features
2.1. Keyboard Shortcuts for browsing and moderating comments
the ability to use keyboard shortcuts to browse and moderate comments was introduced. These keyboard shortcuts are designed to save time by allowing you to rapidly navigate and perform actions on comments.
Keyboard shortcuts are enabled by visiting the Profile panel in Administration > Users > Your Profile. Check the Keyboard Shortcuts checkbox to enable keyboard shortcuts for comment moderation.
- Pressing j moves the current selection (light-blue background) down.
- Pressing k moves the current selection (light-blue background) up.
- Pressing a approves the currently selected comment.
- Pressing s marks the current comment as spam.
- Pressing d deletes the current comment.
- Pressing u unapproves the currently selected comment, placing it back into moderation.
- Pressing r initiates an inline reply to the current comment (you can press Esc to cancel the reply).
- Pressing q activates "Quick Edit" which allows for rapid inline editing of the current comment.
- Pressing Shift-a approves the checked comments.(perform an action on multiple comments at once)
- Pressing Shift-s marks the checked comments as spam. (perform an action on multiple comments at once)
- Pressing Shift-d deletes the checked comments.(perform an action on multiple comments at once)
- Pressing Shift-u unapproves the checked comments. (perform an action on multiple comments at once)
2.2. Reply to and Edit comments from Admin Area
Now you have the ability to reply to your user's comments from the admin and edit comments right from the your comments admin area. A Popup reply form apears when "Reply" link is clicked, your reply is submited by AJAX.
2.3.- Edit comments from Admin Area
Now you have the ability to reply to your user's comments from the admin. A Popup reply form apears when "Reply" link is clicked, your reply is submited by AJAX.
2.4. Allow plugin installations via web interface from Admin Area
The plugin installer allows for installing plugins from the WordPress Administration panels. You can search for plugins by tag, plugin author, or by subject.
It also lists the featured, most popular, and recently added and updated. When you click on the title of a plugin, you can see the details and choose to install it into your WordPress plugin list.
2.5. Admin's new Navigation Menu
One of the best features of the new WP 2.7 feature is moving the top navigation to a side navigation. The side navigation will allow users to expand and collapse sections to reveal the submenus without loading a new screen. In addition, the entire navigation column is collapsible, with a remnant of icons providing an "advanced" mode that creates the largest possible working area.
2.6. Interesting Dashboard Modules: QuickPress & Recent Drafts
A fast way to create drafts or posts that don't require the full metadata options of the Add New Post screen is using the QuickPress module found on the Dasboard area. You you will be able to moderate new comments directly from the Dashboard, including the new Reply to Comment function.
2.7. Quick Edit Option in Admin area
For details on how to update your theme to take advantage of these new features, please see the Enhanced Comment Display article.
2.8. Auto Close Comments And Trackbacks
Comments and trackbacks are deactivated after a certain time.
2.9. Bulk Edit Posts
Post management has never been so easy. 'Bulk Edit Posts' is a new feature introduced in WordPress 2.7. All you have to do is seletc multiple files from your “Edit Post” area and apply an 'edit' filter to bulk moderate files. You can now bulk moderate posts by their tags, catgories, author, status, and more...
Wow! these are certainly some useful tips pertaining to WP 2.7. Tweeted this one :)
I love the features of threaded comment and the ability to close the comment/trackbacks on a certain period of time. cool update :D.
I think you’ve just persuaded me to upgrade!
Wow, that is some cool stuff!
Great overview, I recently upgraded to 2.7 and was hoping to find a useful guide to learn how to navigate the new interface and tweak the settings. Thanks for this.
Stumbled!
I upgraded within the first hours it came out. Well worth it and im really considering moving some of my Joomla sites over to WP. WP 2.7’s commenting features are very impressive and they made installations alot easier.
Excellent tut. With the introduction of these new WP functions, more customization and better administration is easy. WP 2.7 is on its way to be the best ever release.
The biggest challenge for me (actually there were two) has been the plugins. I had to wait a bit for plugin developers to support WP2.7 (and there are still 2 broken plugins). And in my opinion the Admin navigation (positioning) is not as effective. It is in the way (they should have left it at the top where it does not interfere). Currently the admin interface has a left column, a right column and then post editing as a middle column. This effectively jams the editing in a smaller middle column, not full width like it was in 2.5/2.6 – Your screenshots look nice, my WP 2.7 admin looks like a mess, I wonder if there’s a plugin to “theme” the admin interface (or at least clean it up). Funny thing is my theme was unaffected. For me, the plugin installation is broken now, the same with updating plugins. I have to manually deactivate, FTP upload and then reactivate plugins. (It was working fine in prior versions).
One thing I liked about your post above is that you’ve taken the time to orient bloggers to the new features and how to use them, nice job! I also like that you included the link to enhanced comments display – Thank you and for a great post! Again, nice job!
Thanks for you nice words and compliments :)
I really liked how they put the main navigation to the left, this way it will allow it to expand as much as it need to the bottom without interfering admin layout.
I know the width of the post editing box is now less than before but you now have the option to increase its height which gives you more area, Setting > Writing > Size of the post box.
Old Plug-ins are a complete mess, hopefully our kind authors will upgrade their plug-ins very soon :)
You can find a list of updated plug-ins in links below:
http://codex.wordpress.org/Plugins/Plugin_Compatibility/2.7
http://mashable.com/2008/12/11/wordpress-27-plugins/
How does the upgrade effect existing themes? I wonder if anyone has compiled a list of compatible WordPress Themes for 2.7?
Cheers!
Jeromy
Existing themes should work perfectly fine with 2.7. All of this new theme stuff is simply enhancements.
If your theme was working on 2.6, it should work on 2.7. The only thing I’d seriously look into is
wp_logout_url()
.Thanks for the wonderful tips. Very good article.
hanks for the wonderful tips. Very good article.