我在我的网站上有我的主页,我只会使用我的方便-花哨-自定义模式,但我想在我所有的博客帖子/文章中使用WL,然后从那里我链接到这个主页。
我怎么可能删除现有页面中的所有WordLift?(其中我已经标记了一些实体)并仅用于我的新闻之一?
发布于 2021-07-05 15:55:13
您可以使用以下过滤器:
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;
} );https://stackoverflow.com/questions/68252499
复制相似问题