nextbuzz / buzz-seo

Next Buzz SEO WordPress plugin
MIT License
5 stars 1 forks source link

Disable seo metabox for specific cpt #84

Closed studio1902 closed 6 years ago

studio1902 commented 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

lengthofrope commented 6 years ago

Hey there,

There's a filter to disable the metabox:

<?php
add_filter('buzz-seo-disable-posttype', function($posttypes) {
    $posttypes[] = 'customposttypeslug';
    return $posttypes;
});