• Resolved M3

    (@emmtre)


    There is a compatibility issue with the new Yoast SEO version. When Attachment Taxonomies is active there is an extra dropdown filter “All prominent words” in the media screen even if it’s deactivated in Yoast SEO. Any idea how to remove this dropdown filter which is empty. If you deactivate the Attachment Taxonomies plugin the dropdown filter also disappears.

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

    (@emmtre)

    @flixos90 Any idea how to fix this?

    Thread Starter M3

    (@emmtre)

    How to remove the Prominent Words taxonomy added by Yoast SEO when using the Attachment Taxonomies plugin.

    //* Remove SEO prominent words taxonomy
    add_filter( ‘wpseo_prominent_words_post_types’, ‘remove_yst_prominent_words’ );
    function remove_yst_prominent_words( $post_types ) {
    unset( $post_types[‘attachment’] );
    return $post_types;
    }

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Yoast SEO Compatibility’ is closed to new replies.