Rating: 5 stars
Thanks for this plugin. It’s a huge timesaver.
However, as another user pointed out, it didn’t pre-populate with my existing categories.
I dug through the code and realized that you had your DB prefixes hard coded (and my site has custom prefixes.)
Here’s the fix, in case you want to update your code.
$q = "SELECT $wpdb->terms.'name', $wpdb->terms.'term_id' FROM $wpdb->term_relationships
INNER JOIN $wpdb->term_taxonomy ON ($wpdb->term_relationships.'term_taxonomy_id' = $wpdb->term_taxonomy.'term_taxonomy_id')
INNER JOIN $wpdb->terms ON ($wpdb->term_taxonomy.'term_id' = $wpdb->terms.'term_id')
INNER JOIN $wpdb->posts ON ($wpdb->term_relationships.'object_id' = $wpdb->posts.'ID')
WHERE ($wpdb->posts.'ID' = $postid)";
Rating: 5 stars
I wanted to bulk remove my posts from ‘blog’ category. Default WordPress doesn’t allow this, but the plugin did it and saved me hours of manually opening and removing each post individually.
]]>Rating: 4 stars
Good for removing a category from every single post. Does not have any selections or filtering of posts. All or nothing.
Which was exactly what I needed, so it worked for me, but only with the excellent work around by Prokur
]]>Open Mass set Categories in WP Admin, and then run following code in Console:
jQuery(“input[name$=\\[1\\]”).attr(“checked”, false)(where 1 is the ID of selected category)
Rating: 3 stars
I had situation, when I had to remove “uncategorized” category from all posts. It would take ages of manual work unless if you combine this plugin and little jQuery script run in your browser’s console.
Open Mass set Categories in WP Admin, and then run following code in Console:
jQuery(“input[name$=\\[1\\]”).attr(“checked”, false)
(where 1 is the ID of selected category)
]]>Rating: 4 stars
The plugin does what it says it should do, but I wish that instead of selecting categories one by one I could select all the posts that I want in a category and then select a category and do it in bulk.
]]>Rating: 2 stars
Does the work, but not mass, it would be almost the same to edit every post category in the editor? What is the point of plugin?
It even does not show what categories are selected now, i cannot filter drafts of published etc. Just good for one task – editing categories in one place, not even changing categories.
Good luck to author.
]]>Rating: 4 stars
Had to change the category of about 200 posts — this plugin got the job done without any problem.
The interface could be much better. As it stands it requires a click to set the category for each single post. While, especially in cases where the goal is to change a number of posts’ category from A to B, a much cleaner and straightforward UI could be really helpful.
]]>