Closed studio1902 closed 6 years ago
Enhance the cpt seo settings so you can disable the seo metabox for certain post types. Edge case, but I do have use cases where I want a CPT to be public, but not to have SEO-settings.
See: https://github.com/nextbuzz/buzz-seo/issues/34
Hey there,
There's a filter to disable the metabox:
<?php add_filter('buzz-seo-disable-posttype', function($posttypes) { $posttypes[] = 'customposttypeslug'; return $posttypes; });
Enhance the cpt seo settings so you can disable the seo metabox for certain post types. Edge case, but I do have use cases where I want a CPT to be public, but not to have SEO-settings.
See: https://github.com/nextbuzz/buzz-seo/issues/34