Skip navigation

Cleaning Up Post Tags with WordPress Bulk Edit

I recently went through a major upgrade for , one of the oldest websites in the world, on WordPress since 2003, and the testing grounds for some of the earliest WordPress Plugins and Themes. Have I got a lot of lessons learned to share with you.

To begin with, I want to offer the following simple tip involving the powerful Bulk Editor feature in WordPress. Moving around all the posts and upgrading meant losing all the tags on the posts. Trust me, it’s a long story and I’ll save you from it for the moment. The result was that I was stuck with tons of posts with no tags.

List of WordPress posts with no tags

You can quick edit any post from the Posts panel by hovering over the post and choosing the Quick Edit option.

Quick Edit Post option for WordPress

This opens up a view of the meta data of your post, not the entire post for editing. Quick Edit allows you to change the post title, slug, date, author, password, categories, post tags, comment status, ping status, published status, and turn post sticky on or off.

Quick Edit option panel

While this is amazing for a single post or two, I was changing hundreds and hundreds of posts.

Using the WordPress Post Bulk Edit

The WordPress Bulk Edit feature is fantastic for changing the meta data for a lot of posts all at the same time. No need to go one by one through each to change it. While it is fast and easy to use, it also has its limits. Let’s start with how to use it.

To begin the process, narrow down the posts by category, grouping like content together.

WordPress Category Filter posts option

On the drop down options bar of the Posts Panel, choose Categories and select the category you wish to work on from the drop down menu, then click Filter. This will sort your posts by that category, narrowing down the number of posts to fix.

On the left side of every post in the list is a checkbox. To select them all, click the checkbox next to Title on the top row of the table of posts. If you would like to narrow down the checked posts, either check them manually, or check them all and then uncheck the ones you do not wish to change using the bulk edit feature.

WordPress Posts - select all posts in list

From the options bar, choose Edit from the Bulk Actions drop down menu. Click Apply.

Bulk Edit Drop Down Feature in WordPress

This opens up the Bulk Edit option box for you to make changes.

WordPress Bulk Edit to fix post tags

Starting with the left side, you can click X to remove any post you do not wish to change. Next to that are the categories to choose from. Next are the rest, including post tags, author, comments, etc.

UPDATE: Before I get to the limitations, here is a quick video example of how to use the WordPress Bulk Edit feature for changing authors. It works the same as changing any of the options available on the Quick Edit feature, including adding tags, changing categories, etc.

This is also where you encounter your first set of limitations.

If you choose to add a category, click the checkbox for the category you want all the selected posts to be in. Be very certain about this as it will add the posts to that category, but not change any of the existing categories. There is currently no way to use the Bulk Edit feature to remove a post from a category, only to add categories.

If you choose to add tags, type the the words and phrases with a comma between them in the post tags box. Once you hit Update, the tags will be added to the post and the existing tags. Existing tags will not be changed and cannot be removed through Bulk Edit.

If you put the posts in a category or add a tag by mistake, you will have to manually go through and change each individual post using the Quick Edit or full Edit options.

Make your changes and click Update.

Post tags updated using Bulk Edit in WordPress

Another limitation to the Bulk Edit is the number of posts you can change at any one time. In one category on my WordPress site, I had 442 posts to change. WordPress limits the post view to sets of 20, leaving me with a lot of pages to apply the Bulk Edit to. There was once a unrecommended temporary hack to the core files to display all your posts at one time, but until WordPress offers a “show all posts” feature, we are left with changing these 20 by 20. To make this a little more fun, do what I did and put on an interesting movie or TV show on Hulu and plow through this tedious task.

Within two hour long television shows, I was able to retag all of the posts on that site, at least into general tags. I’ll work on adding more specific tags as I clean up the site. And trust me, there is a lot of cleaning to be done.

UPDATE

Thanks to Andrew Nacin who pointed out that the latest version of WordPress offers a feature to set the number of posts viewed on the Post panel through the Screen Options.

WordPress Post View  - set the quantity of posts viewed through Screen Options

Well, at least I got some Hulu watching time in. This will definitely shorten my television time. Don’t know whether or not to be excited about this.

Do be careful when using this as it does take some time to generate all the posts when using a large number. Even on WordPress.com, I had to reload the page twice to generate a list of 50 posts. Most likely an issue on my end. If you don’t need it, don’t set it to a high number, or change it back when you are done.

Thanks, Andrew, and Otto for supplying a Plugin script to make this a more permanent fix. I love the WordPress Community.

Now, about setting the remove features in the Bulk Edit…


Feed on Lorelle on WordPress Subscribe Feedburner iconVia Feedburner Subscribe by Email

Copyright Lorelle VanFossen.

29 Comments

  1. Posted April 22, 2011 at 8:10 am | Permalink

    There is a way to increase the posts per page without hacking core.


    add_filter('edit_posts_per_page','increase_post_count');
    function increase_post_count($num) {
    return 60; // adjust this number as you see fit
    }

    Put it in a plugin or in your theme’s functions.php.

    • Posted April 22, 2011 at 11:28 am | Permalink

      Excellent. Thanks for the Plugin code to help us view more of our posts. Brilliant!

    • Posted April 22, 2011 at 2:04 pm | Permalink

      …and there’s also the Screen Options tab. No code necessary.

    • Posted April 22, 2011 at 3:39 pm | Permalink

      WordPress 2.7. Literally.

      • Posted April 22, 2011 at 4:50 pm | Permalink

        Huh. So many amazing features get added to every version of WordPress, forgive me if I missed one or two. 😀 Thanks for the specifics.

  2. S Emerson
    Posted April 22, 2011 at 11:10 am | Permalink

    But Lorrel,
    You have created a duplicate content issue doing this. Now you have tag pages that all contain the same content.

    • Posted April 22, 2011 at 11:32 am | Permalink

      I don’t understand. First, adding tags to post content is a natural part of the publishing flow. I’m only fixing what should have been there in the first place, if the tags had held during the migration to the latest version of WordPress. Second, if designed properly, the WordPress Theme would show excerpts on the tag pages, as they should on all multiple post pages, or post titles, whichever the user prefers.

      I’m not giving the same tag to every since post. I’m going through all the posts in specific categories and assigning them the core tags that they would be in anyway. For example, every article I publish on photography would have “photography” as a tag. That’s a natural part of the process, micro-categorizing your content.

      There are many ways to avoid duplicate content issues with Google, but this is not for Google but for my readers who want to get to the content they need by drilling through the tags.

    • S Emerson
      Posted April 22, 2011 at 1:13 pm | Permalink

      Ok, I get you are doing this for your readers but look at this:
      http://www.cameraontheroad.com/tag/patterns-in-nature-2/
      http://www.cameraontheroad.com/tag/tulips/
      Are exactly the same as far as content goes.

      This one starts with the same excerpt http://www.cameraontheroad.com/category/photography/basic-nature-photography/

      Wouldn’t you want your readers to also be able to find these via the search engines?

      • Posted April 22, 2011 at 3:35 pm | Permalink

        My readers wouldn’t be using a search engine once they arrive on my site. My site is still under development, so while those pages may start with the same excerpts, this doesn’t change what I’m doing. And I’m rather stunned that you don’t understand how tags work. I recommend Tags and Tagging in WordPress.

  3. S Emerson
    Posted April 22, 2011 at 4:04 pm | Permalink

    I do understand how tags work.

    I thought that bloggers should be aware of other factors associated with tag clouds. Whether they care or not is up to them.

    Matt Cutts has a video here: http://youtu.be/bYPX_ZmhLqg Do tag clouds help or hinder SEO?

  4. Posted April 22, 2011 at 7:59 pm | Permalink

    Now, about setting the remove features in the Bulk Edit…

    The UX for that is a challenge:

    “There were talks about implementing removal too but that was never a high priority. There are some UX questions too: shall we add extra boxes with the existing cats, tags, etc. (that may be more confusing) or shall we add a red checkbox above the existing cats saying ‘Remove checked categories from the selected posts’. Or perhaps radio buttons Add (default) / Remove.” [ref]

    And that’s just referring to categories. Then when you introduce a raw text area for non-hierarchical types, it becomes quite a mess to run all the intersections.

    • anton
      Posted June 19, 2011 at 6:25 pm | Permalink

      This would be a great feature to introduce. If you use WordPress as site management tool as opposed to just a blog then you will see great benefit in this. Im going to mock something up and send it to the UX team and see what they think. I definitely have an incline towards how the tags are managed within the edit post screen i.e. you have the textarea and then underneath you have the current tags with an ‘X’ next to them so you can get rid of whichever ones you dont need/want.

  5. Patricia
    Posted April 25, 2011 at 9:01 am | Permalink

    I have started to use WordPress a couple of months ago. I have now in excess of 150 posts and will definitely use your bulk function tip.

  6. Jerry Bates
    Posted May 6, 2011 at 8:04 pm | Permalink

    I use WordPress every day, and I had no idea that setting for the view count existed. I’ve been doing everything 20 by 20 up to now, just like you, so that tip is worth it’s weight in gold! Thanks for a great read.

  7. Posted July 18, 2011 at 11:39 am | Permalink

    I’ve been using WordPress for two years and never knew about the bulk-edit until I found this post. I’m rewriting a number of my posts and needed to send the bulk of them back to the draft category. Thank you, thank you for saving me a ton of time.

    • Posted July 18, 2011 at 3:09 pm | Permalink

      You are welcome. It’s a lifesaver for me. I just wish it was a little more robust. Thanks.

  8. Posted August 10, 2011 at 9:31 am | Permalink

    Lorelle,

    I’m struggling with this, I’m not needing like you to add tags but am trying to change author names (my site has numerous authors and the previous editor just used his name whereas I would rather credit the actual author) Whenever I go to the bulk editing section I’m given all of the options you have shown in your image except for author. Do you have any idea why this should be?

    • Posted August 10, 2011 at 12:05 pm | Permalink

      You can bulk edit change authors. Simply check mark the posts appropriate to a specific author and choose bulk edit per the article instructions and change the name to whomever is appropriate from the user list. The authors must be in the user list. You cannot just type in their names.

      For information on how to add authors to WordPress without contacting the authors direction, see Genealogy Blog: Blog Contributors – Wanted Dead or Alive.

    • Rob Law
      Posted August 11, 2011 at 2:19 am | Permalink

      Lorelle,

      The trouble is I don’t get the option to change the author, the drop down is not there. I’ll get a screen shot and put it in a reply to show you.

      • Posted August 11, 2011 at 11:35 am | Permalink

        It is on my WordPress blogs. You have to ADD them as a User. They won’t appear on the author list unless they are set as a User at least at the author level. I’m adding a how to video to the article, just for you. 😀

    • Rob Law
      Posted August 11, 2011 at 2:20 pm | Permalink

      Lorelle,

      Looking forward to the video, although all of my authors are set as authors on my user section of the dashboard. Perhaps your video will bring something to the fore that is glaringly obvious but unnoticeable to me at present.

      • Posted August 11, 2011 at 4:54 pm | Permalink

        It’s in the post, Rob. It’s still a pain but it’s the only way unless you dig into the database and do a bunch of search and replaces, which I DO NOT recommend.

  9. Posted April 7, 2012 at 5:37 am | Permalink

    Hi Lorelle, you recently pointed me to this old post (from an old post of mine!=) ) and I wanted to say thank you, and also ask for a little advice if I may.

    One thing I don’t see in the Bulk Edit options is a way to bulk edit the visibility of posts. In relaunching my website I took the drastic step of lumping most of my old posts into an ‘archived’ category and then using the Ultimate Category Excluder plugin to hide them. I’m starting again from a blank slate, but I didn’t want to delete them entirely.

    They still show up in the previous/next links at the bottom of posts, howeve, and that was when I realised I could toggle the visibility to hide them entirely. I don’t fancy the prospect of editing them all individually however, although the exercise might be a good idea in case there are any posts I want to make public again..

    Do you have any suggestions?

    • Posted April 7, 2012 at 9:25 am | Permalink

      The concept of archives is deprecated. There really isn’t a reason to “archive” anything. If you wish to remove them from the content, export them to a backup XML file for safe keeping and delete them.

      There are WordPress Plugins that will help you move posts between categories. Give them a try.

      There is always Find, Search, Replace, and Delete In A WordPress Database if you feel brave. 😀

  10. Posted April 21, 2015 at 5:15 am | Permalink

    ooooooooo – this is a lovely one! Thank YOU!!

  11. WPTP
    Posted May 8, 2015 at 11:42 pm | Permalink

    Nice tutorial. It’s very helpful 🙂

    We have also written a bit in depth tutorial about bulk editing Posts and Pages in WordPress.

  12. Posted October 7, 2016 at 11:17 am | Permalink

    There is one category I am trying to edit in order to change its name, but the site is not allowing me to do so. I need some help on where to go, please.

    • Posted October 7, 2016 at 1:45 pm | Permalink

      Change the default category in Settings. That will free up the one you are changing that is already by being set as default. Thanks.


6 Trackbacks/Pingbacks

  1. Cleaning Up Post Tags with WordPress Bulk Edit « Lorelle on WordPress…

    I recently went through a major upgrade for Taking Your Camera on the Road, one of the oldest websites in the world, on WordPress since 2003, and the testing grounds for some of the earliest WordPress Plugins and Themes. Have I got a lot of lessons lea…

  2. […] 1. Use the built-in WordPress Bulk Edit feature. […]

  3. […] checkbox is actually one of your most powerful allies in the pursuit of mass comment editing. In Cleaning Up Post Tags with WordPress Bulk Edit I go through the step-by-step details on how to use the bulk edit feature of WordPress to clean up […]

  4. […] can use the Bulk Edit feature of WordPress to add the category to the posts, or you can manually go through all the posts and add them to the […]

  5. […] to remove them from the slider and make room for the new posts. She’s learned how to use the bulk editor in WordPress to make this easier and quick to […]

  6. […] using WordPress Bulk Edit if it helps my organisation and help with […]

Post a Comment to Darla McDavid

Required fields are marked *
*
*