我正在使用WordPress的WordLift插件,我想在我的网站上为其他自定义帖子类型添加对Semantic SEO的支持。有没有办法做到这一点?
答案 0 :(得分:1)
是的,您可以使用过滤器添加自定义帖子类型:wl_valid_entity_post_types
。
过滤器采用支持的帖子类型的数组(默认情况下为post
,page
和entity
)。您可以向阵列添加自定义帖子类型并将其返回,例如:
add_filter('wl_valid_entity_post_types', function ($post_types) {
$post_types[] = 'gallery';
return $post_types;
});
关于GitHub的参考add a WordPress filter to allow customers to extend the post types that can be turned into entities。