如何仅为新闻页面启用WordLift JSON-LD



我的网站上有主页,我只会使用我方便的自定义模式,但我想在所有博客文章中使用WL,然后从那里链接到这个主页。

如何删除现有页面中的所有WordLift?(我已经标记了一些实体(,只用于我的新闻?

您可以使用以下过滤器:

add_filter( 'wl_jsonld_enabled', function( $value ) {
// You can perform any check you need, e.g. is this the Home page?
$is_homepage = is_home() || is_front_page();
// or is this a post?
$post_id     = is_singular() ? get_the_ID() : null;
// You can also get for the queried object for further checks.
$query_object = get_queried_object();
// Then return true to enable the JSON-LD or false to disable it.
return $value;
} );

最新更新