Добавить теги в пользовательский тип сообщения
function reg_tag() {
register_taxonomy_for_object_type('post_tag', 'CUSTOM_POST_TYPE'); // name of your post
}
add_action('init', 'reg_tag');
// add this to your custom plugin folder or into your function.php file under theme folder
Singh99