Love the plugin, its helped me save a ton of time setting categories for a customer. Everything worked except the keyword field didn’t seem to make a difference. I’m not sure if it worked before and wordpress changed. So I edited the plugin a little so I could pass a search keyword. I edited line 125 (I think) to be:
$args['s'] = $_GET['s'];
and line 188 to:
<input type="text" id="post-search-input" name="s" value="<?php echo $_GET['s'] ?>">
Again, thanks again for your work!
]]>I added this line:
$args[‘post_status’] = ‘any’;
at line 206 for it to work for images.
]]>I was trying to use this on a site with a vast number of posts and categories with hundreds of terms in them but would get 414 error pages when trying to process large amounts of data using the plugin.
I edited the plugin to change the GET methods to POST and it fixed all the issues. Is there a particular reason you used GET instead of POST?
]]>