Jetpack_SEO_Titles::is_conflicted_theme PHP Method

is_conflicted_theme() public static method

Checks if current theme is defining custom title that won't work nicely with our custom SEO title override.
public static is_conflicted_theme ( ) : boolean
return boolean True if current theme sets custom title, false otherwise.
    public static function is_conflicted_theme()
    {
        /**
         * Can be used to specify a list of themes that use their own custom title format.
         *
         * If current site is using one of the themes listed as conflicting,
         * Jetpack SEO custom title formats will be disabled.
         *
         * @module seo-tools
         *
         * @since 4.4.0
         *
         * @param array List of conflicted theme names. Defaults to empty array.
         */
        $conflicted_themes = apply_filters('jetpack_seo_custom_title_conflicted_themes', array());
        return isset($conflicted_themes[get_option('template')]);
    }