Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter dimaggio

    (@dimaggio)

    Ok now I feel stupid, I just realized I can disable it from “Panel options”. But I’d still be interested to know if there’s an option to disable it globally? Maybe through a filter?

    Thread Starter dimaggio

    (@dimaggio)

    Never mind, I found a solution

    function unset_meta_column( $columns ) {
        unset($columns['page-meta-robots']);
        return $columns;
    }
    add_filter( 'manage_edit-post_columns', 'unset_meta_column', 10, 1 );
    add_filter( 'manage_edit-page_columns', 'unset_meta_column', 10, 1 );
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘[Plugin: WordPress SEO by Yoast] Disable "Robots Meta" column in post listing’ is closed to new replies.