Exclude SEO column from custom post type
-
Hi there The SEO Framework guys.
I was wondering if I could somehow remove the SEO column for a custom post type.
They are listings; they will change often, so it’s unlikely my clients will need to see big red warnings if they didn’t set the page title and description “correctly”.Here is my code:
add_filter( 'manage_listings_posts_columns', 'remove_seo_column' ); function remove_seo_column( $columns ) { unset( $columns['seo'], ); return $columns; }
I know it’s *mostly* there, but I’d just need the exact name of the SEO column. Thanks!
Viewing 9 replies - 1 through 9 (of 9 total)
Viewing 9 replies - 1 through 9 (of 9 total)
- The topic ‘Exclude SEO column from custom post type’ is closed to new replies.