Php 如何删除Yoast seo 11.x添加到我的Wordpress站点的模式文章?

Php 如何删除Yoast seo 11.x添加到我的Wordpress站点的模式文章?,php,wordpress,schema,json-ld,yoast,Php,Wordpress,Schema,Json Ld,Yoast,Yoast SEO插件自动添加到我的Wordpress站点文章模式。我可以只删除“Article”(保留其他模式)吗 我安装了Yoast SEO 11.7 premium(越南语)。我在子主题的“function.php”文件中尝试了下面的代码,但失败了 function bybe_remove_yoast_json($data){ if ( (isset($data['@type'])) && ($data['@type'] == 'Article') ) {

Yoast SEO插件自动添加到我的Wordpress站点文章模式。我可以只删除“Article”(保留其他模式)吗

我安装了Yoast SEO 11.7 premium(越南语)。我在子主题的“function.php”文件中尝试了下面的代码,但失败了

function bybe_remove_yoast_json($data){
    if ( (isset($data['@type'])) && ($data['@type'] == 'Article') ) {
        $data = array();
    }
    return $data;
}
add_filter('wpseo_json_ld_output', 'bybe_remove_yoast_json', 10, 1);
请帮帮我。多谢各位