WordLift中支持自定义帖子类型

问题描述 投票:3回答:1

我正在使用WordPress的WordLift插件,我想在我的网站上为其他自定义帖子类型添加对Semantic SEO的支持。有没有办法做到这一点?

wordpress semantics semantic-markup wordlift
1个回答
1
投票

是的,您可以使用过滤器添加自定义帖子类型:wl_valid_entity_post_types

过滤器采用支持的帖子类型的数组(默认为postpageentity)。您可以向数组添加自定义帖子类型并将其返回,例如:

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

© www.soinside.com 2019 - 2024. All rights reserved.