WPBeginner

Beginner's Guide for WordPress

  • Blog
    • Beginners Guide
    • News
    • Opinion
    • Showcase
    • Themes
    • Tutorials
    • WordPress Plugins
  • Start Here
    • How to Start a Blog
    • Create a Website
    • Start an Online Store
    • Best Website Builder
    • Email Marketing
    • WordPress Hosting
    • Business Name Ideas
  • Deals
    • Bluehost Coupon
    • SiteGround Coupon
    • WP Engine Coupon
    • HostGator Coupon
    • Domain.com Coupon
    • Constant Contact
    • View All Deals »
  • Glossary
  • Videos
  • Products
X
☰
Beginner's Guide for WordPress / Start your WordPress Blog in minutes
Choosing the Best
WordPress Hosting
How to Easily
Install WordPress
Recommended
WordPress Plugins
View all Guides

WPBeginner» Blog» News» Most Notable Features in WordPress 2.9

Most Notable Features in WordPress 2.9

Last updated on June 21st, 2012 by Editorial Staff
12 Shares
Share
Tweet
Share
Pin
Free WordPress Video Tutorials on YouTube by WPBeginner
Most Notable Features in WordPress 2.9

Long awaited WordPress 2.9 has been finalized by the developers and it is put out for download as a release candidate. Some of you might be wondering what is a release candidate. A release candidate is when the developers feel that all features that were to be added during the beta version are added, and this version could potentially be made official except it can use some extra testing for bugs. This is why as a contributing member to the community, everyone should download the release candidate and test run it to see if everything works fine. If your site is using plugins, then you should see if they are compatible with the new version and help the authors and other users by letting them know whether it works or not. You can do this by looking at the plugins page in the directory. (Example)

WordPress is really a community based script and without everyone’s help, suggestions, and contributions, it would not have been possible to make everything work.

You may download the Release Candidate from this Link. Well if you don’t want to download it, then might as well check out all these cool features that are coming with this new release. Maybe this will change your mind or maybe blow your mind with what an amazing release this will be.

Batch Plugin Update in WordPress

When WordPress introduced one click upgrade for plugins, it was like Christmas in July. But this time maybe on the actual Christmas or perhaps slightly earlier with the release of WordPress 2.9, we will now be able to upgrade multiple plugins with one click from our WordPress Admin Panel. Check out the Screenshot below:

Batch Plugin Updates

Optimize/Repair Database Functionality

WordPress has added a new feature to the core which allows you to repair and optimize your database. In order to activate this function, you will need to add this line in your wp-config.php

define(‘WP_ALLOW_REPAIR’, true);

Once you have added it, you will now be able to run the script which is located at this URL:

http://www.yoursite.com/wp-admin/maint/repair.php

When you arrive to that page, you will see a screen like this:

Optimize and Repair WordPress Database

WordPress Recycle Bin / Trash

Regardless of whether you are a PC user, or a Mac user, we have all had moments when we accidently deleted something really important. But good thing about the operating systems is that they have something where our trash is stored at. In PC its called a recycled bin, and in Mac it is called the Trash, regardless of what it is called, the fact that we can restore it is what matters. WordPress has now added a similar functionality for the posts, pages, and the comments. Instead of permanently deleting these, you can now trash it and then later on empty the trash once you are completely done with what you were doing. By default WordPress will empty the trash every 30 days, but you can change the time limit by simply entering the following code in your wp-config.php:

define( ‘EMPTY_TRASH_DAYS’, 10 );

Check out the Screenshot below, or simply just download the version and see it yourself:

WordPress Recycle Bin - Trash

Image Editor

The image editor is something that a lot of users were waiting for and it is included in this release. This editor will let you make simple changes such as cropping, rotating, scaling, etc. Check out the screenshot below to see how this feature would look.

WordPress Image Editor

Ability to add Post Thumbnails

You have probably seen many sites displaying posts on the homepage with a post thumbnail. Or many sites having the post thumbnail next to each post in their index. Before version 2.9, it was done through custom fields. In this release, you can simply add the thumbnail when writing the post and displaying it in the template is even easier.

WordPress Post Image

In order for you to have this functionality available in the admin panel, you must have a theme that supports this function. It is really simple to add support for this feature and we will have a full tutorial on this coming up soon. You will need to visit your theme’s functions.php and add the following code:

add_theme_support( ‘post-thumbnails’ );

Once you choose the thumbnail, you can display it on the template using the following code:

<?php the_post_thumbnail( 'thumbnail' ); ?>

We will be posting a full guide for this function very soon because it is a very useful feature.

Extend User Contact Info

WordPress user profile page is quite old and many new networks have gain popularity such as twitter and facebook. Prior to version 2.9, it was really hard to add a custom field in the contact area, but thanks to Joost De Valk for his contribution, now this feature is available.

Simply open your functions.php and add the following function:

<?php
function my_new_contactmethods( $contactmethods ) {
// Add Twitter
$contactmethods['twitter'] = 'Twitter';
//add Facebook
$contactmethods['facebook'] = 'Facebook';

return $contactmethods;
}
add_filter('user_contactmethods','my_new_contactmethods',10,1);
?>

This will add extra fields in your user profile pages. Check the screenshot below for example.

Extend User Contact Info

You can display these on author profile page by using the normal $curauth variable or the_author_meta variable. We will also be writing about these in the near future to explain full details how this function works.

New Excerpt Filter

Up till WordPress 2.8.6, when the user add the_excerpt code in the loop, it would display content with a 55 word limit and once the word limit was reached, it would add […]. With this new ability, You can now specify a function and control both excerpt word count, and the more text. All you have to do is open your theme’s function.php file and add the following code:

// Changing excerpt length
function new_excerpt_length($length) {
return 60;
}
add_filter(‘excerpt_length’, ‘new_excerpt_length’);

// Changing excerpt more
function new_excerpt_more($more) {
return ‘…’;
}
add_filter(‘excerpt_more’, ‘new_excerpt_more’);

All thanks goes to Ramiy for suggesting this feature.

oEmbed making Embedding Easier

Thanks to ViperBond007 that this feature was added to the core of WordPress 2.9. It is a specification that allows media providers like Flickr, YouTube and others to provide data for consumer applications like WordPress about media.

There are many many more features that are being included in this version. To see a full list check out this page.

Don’t hesitate and do your part for the community. Download the Release Candidate from this Link and start testing out all the features, so this version can be released even faster.

12 Shares
Share
Tweet
Share
Pin
Popular on WPBeginner Right Now!
  • How to Fix the Error Establishing a Database Connection in WordPress

    How to Fix the Error Establishing a Database Connection in WordPress

  • Revealed: Why Building an Email List is so Important Today (6 Reasons)

    Revealed: Why Building an Email List is so Important Today (6 Reasons)

  • Checklist

    Checklist: 15 Things You MUST DO Before Changing WordPress Themes

  • Google Analytics in WordPress

    How to Install Google Analytics in WordPress for Beginners

About the Editorial Staff

Editorial Staff at WPBeginner is a team of WordPress experts led by Syed Balkhi. Trusted by over 1.3 million readers worldwide.

The Ultimate WordPress Toolkit

31 Comments

Leave a Reply
  1. 1skyliner says:
    Jun 4, 2010 at 2:29 am

    Great Post updated my blog to finally 2.9. Now time to add these codes in wp-config

    Reply
  2. Shahab Khan says:
    Mar 22, 2010 at 5:27 am

    Database repair and optimization information is great really. Going to edit my wp-config right now.

    Btw i will be waiting for your tutorial for adding thumbnail to blog posts.

    Thanks again for sharing this.

    Reply
    • Editorial Staff says:
      Mar 22, 2010 at 6:02 am

      We already wrote that article. You may find it here

      Reply
      • Shahab Khan says:
        Mar 22, 2010 at 9:00 am

        Oh thanks!
        I will go through that article.

        Reply
  3. Harsh Agrawal says:
    Dec 19, 2009 at 8:00 pm

    Great Post updated my blog to finally 2.9. Now time to add these codes in wp-config

    Reply
  4. sriganesh says:
    Dec 19, 2009 at 2:55 pm

    the list detail really makes me to upgrade now, its have more features.:D cool
    -=-=-=
    DOubt :
    1. if we add the lines to wp-congfig , if something happens error all dat will be lost ???
    2. my wordpress admin post edtior does show visual editor (i didnt diable it) the buttons and the typed text is not visible from W2.7 now iam uptodate. what to do
    any help or tips ?? coz i like the thumnail drag and drop features : codings make me sick :(
    -=-=-=
    thanks for that :lol: merry Xmas

    Reply
  5. Vanesa says:
    Dec 19, 2009 at 2:50 pm

    Great post! I’m trying to optimized the database but the url: http://www.yoursite.com/wp-admin/maint/repair.php didn´t show me the option, only shows the home page instead :(

    Reply
  6. PelFusion says:
    Dec 19, 2009 at 1:08 pm

    thanks for updating us :)

    Reply
  7. David McDougal says:
    Dec 18, 2009 at 7:42 pm

    WOW, really looking forward to the new version. I had heard of most of the new features, but the database repiar/optimize was one that I did not know about. 2.9 looks to make it alot easier to create a highly functional site on a per page, or per post basis without alot of extra pages or plugins. Way to go WordPress Core team.

    Reply
  8. Artem Russakovskii says:
    Dec 18, 2009 at 6:50 pm

    Finally built-in support for post thumbnails! Very excited about that.

    Reply
  9. Chris says:
    Dec 18, 2009 at 1:53 pm

    It says on the Changelog that custom post types did not make it into 2.9 — Just wondering what your last paragraph is referring to?

    thanks though for this — WordPress.org’s own announcement leaves much to be desired.

    Reply
  10. The Apple Vine says:
    Dec 18, 2009 at 8:48 am

    Looks awesome. Can’t wait to install the final version!

    Reply
  11. Michael Louviere says:
    Dec 17, 2009 at 11:01 pm

    Wow, The post thumbnails feature is excellent! Way to go WP!

    Reply
  12. Robert Dall says:
    Dec 17, 2009 at 6:51 pm

    Great overview of the new features in WP 2.9

    I so look forward to it.

    Reply
  13. rob says:
    Dec 17, 2009 at 4:40 pm

    yeah cool … but we already have all of this for years in TYPO3 …

    Reply
    • Matt says:
      Dec 20, 2009 at 1:28 pm

      @Rob – If TYPO3 is so great, then why are you reading the WordPress blogs?

      Reply
  14. AVDisco says:
    Dec 17, 2009 at 3:11 pm

    Nice list!

    I think WP’s image management features are really coming of age — what with post thumbs, image editing and the gallery — you need a hell of a lot less plugins to build a portfolio-type website that you used to.

    Reply
  15. centshonor says:
    Dec 17, 2009 at 12:20 pm

    Personally, I’m still hoping WordPress gets some much improved SFTP support.

    Reply
  16. Indrek says:
    Dec 17, 2009 at 12:14 pm

    Thanks for the overview about these new features. Can’t wait until the live version is released.

    Reply
  17. maverick says:
    Dec 17, 2009 at 12:05 pm

    hey thanks for letting me know about this. have downloaded it. will test it soon.

    thanks

    Reply
  18. Drazick says:
    Dec 17, 2009 at 11:44 am

    I wish they improved the Editor.

    Reply
  19. Jim says:
    Dec 17, 2009 at 10:31 am

    Make sure you back up your database before letting anything “auto repair” your data. Just saying…

    Reply
  20. bobjohnsonmilw says:
    Dec 17, 2009 at 10:09 am

    Apparently I’m a better developer than I give myself credit, this is all pretty basic functionality for most things I’ve ever had to custom build. I still don’t understand why WP is that big of a deal, there are plenty of other great options out there, if not better in many ways.

    Reply
  21. Luke Wertz says:
    Dec 17, 2009 at 9:29 am

    Just to be clear: the custom post types are not going to make it into WP2.9, but “will land early in the 3.0 dev cycle”. See the ticket for more info on that.

    Reply
  22. Mohamed Rias @ techieblogger.com says:
    Dec 17, 2009 at 9:10 am

    wow thats a gr8 news.. I was looking for those features since a longtime..

    Reply
  23. Vinish says:
    Dec 17, 2009 at 8:58 am

    Great news

    Reply
  24. Satish Gandham says:
    Dec 17, 2009 at 8:49 am

    To my knowledge “Excerpt Filter” was there in wordpress versions before 2.8.6.

    What arguments does the the_post_thumbnail function take, is it possible to specify the image size to be used in different locations or should i use timthumb script??

    Reply
  25. Konstantin says:
    Dec 17, 2009 at 8:20 am

    Great post! I ran the 2.9-beta2 yesterday and switched to the RC1 today, everything works as expected.

    Reply
  26. Sarah Arrow says:
    Dec 17, 2009 at 8:04 am

    The ability to add thumbnails without a custom field is something I am looking forward to, and the trash is always useful :-)

    Thanks for sharing.

    Sarah

    Reply
  27. Eric Grint says:
    Dec 17, 2009 at 7:27 am

    All this for free? hehe :P This is awesome :D

    Reply
  28. Enk. says:
    Dec 17, 2009 at 6:27 am

    I knew about the Image Editor and Trash Can from a long time.. but this is gonna be something beautiful. Thanks WPB and Automatic for this awesome thing ! :)

    Reply

Leave a Reply Cancel reply

Thanks for choosing to leave a comment. Please keep in mind that all comments are moderated according to our comment policy, and your email address will NOT be published. Please Do NOT use keywords in the name field. Let's have a personal and meaningful conversation.

Over 1,320,000+ Readers

Get fresh content from WPBeginner

Featured WordPress Plugin
All in One SEO
Improve website SEO rankings with AIOSEO plugin. Learn More »
How to Start a Blog How to Start a Blog
I need help with ...
Starting a
Blog
WordPress
Performance
WordPress
Security
WordPress
SEO
WordPress
Errors
Building an
Online Store
Useful WordPress Guides
    • 7 Best WordPress Backup Plugins Compared (Pros and Cons)
    • How to Fix the Error Establishing a Database Connection in WordPress
    • Why You Need a CDN for your WordPress Blog? [Infographic]
    • 30 Legit Ways to Make Money Online Blogging with WordPress
    • Self Hosted WordPress.org vs. Free WordPress.com [Infograph]
    • Free Recording: WordPress Workshop for Beginners
    • 24 Must Have WordPress Plugins for Business Websites
    • How to Properly Move Your Blog from WordPress.com to WordPress.org
    • 5 Best Contact Form Plugins for WordPress Compared
    • Which is the Best WordPress Popup Plugin? (Comparison)
    • Best WooCommerce Hosting in 2021 (Comparison)
    • How to Fix the Internal Server Error in WordPress
    • How to Install WordPress - Complete WordPress Installation Tutorial
    • Why You Should Start Building an Email List Right Away
    • How to Properly Move WordPress to a New Domain Without Losing SEO
    • How to Choose the Best WordPress Hosting for Your Website
    • How to Choose the Best Blogging Platform (Comparison)
    • WordPress Tutorials - 200+ Step by Step WordPress Tutorials
    • 5 Best WordPress Ecommerce Plugins Compared
    • 5 Best WordPress Membership Plugins (Compared)
    • 7 Best Email Marketing Services for Small Business (2021)
    • How to Choose the Best Domain Registrar (Compared)
    • The Truth About Shared WordPress Web Hosting
    • When Do You Really Need Managed WordPress Hosting?
    • 5 Best Drag and Drop WordPress Page Builders Compared
    • How to Switch from Blogger to WordPress without Losing Google Rankings
    • How to Properly Switch From Wix to WordPress (Step by Step)
    • How to Properly Move from Weebly to WordPress (Step by Step)
    • Do You Really Need a VPS? Best WordPress VPS Hosting Compared
    • How to Properly Move from Squarespace to WordPress
    • How to Register a Domain Name (+ tip to get it for FREE)
    • HostGator Review - An Honest Look at Speed & Uptime (2021)
    • SiteGround Reviews from 4464 Users & Our Experts (2021)
    • Bluehost Review from Real Users + Performance Stats (2021)
    • How Much Does It Really Cost to Build a WordPress Website?
    • How to Create an Email Newsletter the RIGHT WAY (Step by Step)
    • Free Business Name Generator (A.I Powered)
    • How to Create a Free Business Email Address in 5 Minutes (Step by Step)
    • How to Install Google Analytics in WordPress for Beginners
    • How to Move WordPress to a New Host or Server With No Downtime
    • Why is WordPress Free? What are the Costs? What is the Catch?
    • How to Make a Website in 2021 – Step by Step Guide
Deals & Coupons (view all)
AWeber logo
AWeber Coupon
Get a completely FREE plan with AWeber, or 14.9% off the Pro plan. Start your email list today.
MonsterInsights Coupon Code
MonsterInsights Coupon
Get 50% off MonsterInsights, the best Google Analytics plugin for WordPress.
Featured In
About WPBeginner®

WPBeginner is a free WordPress resource site for Beginners. WPBeginner was founded in July 2009 by Syed Balkhi. The main goal of this site is to provide quality tips, tricks, hacks, and other WordPress resources that allows WordPress beginners to improve their site(s).

Join our team: We are Hiring!

Site Links
  • About Us
  • Contact Us
  • FTC Disclosure
  • Privacy Policy
  • Terms of Service
  • Free Blog Setup
  • Free Business Tools
  • Growth Fund
Our Sites
  • OptinMonster
  • MonsterInsights
  • WPForms
  • SeedProd
  • Nameboy
  • RafflePress
  • Smash Balloon
  • AIOSEO

Copyright © 2009 - 2021 WPBeginner LLC. All Rights Reserved. WPBeginner® is a registered trademark.

Managed by Awesome Motive | WordPress hosting by SiteGround | WordPress Security by Sucuri.