如果我在我的网站上发布普通文章,所有主题功能都能正常工作,例如文章图像、作者信息、推荐文章等等。但是该插件使用了一个自定义类型叫做词汇表,我使用了以下代码: function add_glossary_post_type_support( $supported_post_types ) { if ( ! is_array( $supported_post_types ) ) { $supported_post_types = array(); } $supported_post_types[] = 'glossary'; return...