我正在使用WordPress的WordLift插件,我想在我的网站中为其他自定义帖子类型添加对语义搜索引擎优化的支持。有没有办法做到这一点?
发布于 2018-02-27 22:45:01
是的,有一个过滤器可以用来添加自定义帖子类型:wl_valid_entity_post_types。
过滤器接受一个包含支持的post类型(默认情况下为post、page和entity)的数组。您可以将自定义post类型添加到数组中并返回它,例如:
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。
https://stackoverflow.com/questions/49011300
复制相似问题