Prevents lower-level users from creating new tags when editing a post, but still allows them to choose from a list of existing tags.
There are currently no settings for Manage Tags Capability. Once the plugin is activated, it will modify the tags menu on posts for users without manage_categories ability.
To modify the default settings for the manage_categories ability, you can add a plugin like Capabilities Manager to turn the manage_categories capability on and off for specific user levels.
Yes. If you want the plugin to affect a custom post type, just add this code to your theme or plugin:
function add_mtc_post_types( $types )
{
$types[] = 'your-post-type-slug';
return $types;
}
add_filter( 'rd2_mtc_post_types', 'add_mtc_post_types' );
Requires: 2.6 or higher
Compatible up to: 3.2.1
Last Updated: 2011-8-12
Downloads: 3,480
Got something to say? Need help?