WordPress: Disable Yoast SEO on Custom Post Type

function my_remove_wp_seo_meta_box() {
 remove_meta_box('wpseo_meta', YOUR_POST_TYPE_NAME_HERE, 'normal');
 }
 add_action('add_meta_boxes', 'my_remove_wp_seo_meta_box', 100);

Revisions

Tags: ,

No comments yet.

Leave a Reply