admin管理员组

文章数量:1333440

I know it can be disabled everywhere with

add_filter( 'wpseo_json_ld_output', '__return_false' );

But i want to keep the breadcrumbs so if i could do that only if (is_home()) that would be perfect. I just don't know where to hook it.

I know it can be disabled everywhere with

add_filter( 'wpseo_json_ld_output', '__return_false' );

But i want to keep the breadcrumbs so if i could do that only if (is_home()) that would be perfect. I just don't know where to hook it.

Share Improve this question asked Jun 26, 2020 at 20:54 Michael RogersMichael Rogers 5498 silver badges37 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 1

try like this

function filter_wpseo_json_ld_output( $bool, $context ) { 
    if(is_home()){ return false; }
    return $bool; 
}; 
// add the filter 
add_filter( 'wpseo_json_ld_output', 'filter_wpseo_json_ld_output', 10, 2 ); 

本文标签: how to disable Yoast SEO schema from homepage only