Shortcodes 真的应该参加custom post types. 本质上,自定义帖子类型是一个帖子。因此,似乎在某些地方过滤短代码有问题。
可能发生的情况是您正在使用get_the_content() rather than the_content() 无法过滤。在何处以及如何显示自定义帖子类型的内容?
如果是这种情况,请以这种方式使用get\\u the\\u content()函数来应用适当的筛选。
<?php apply_filters(\'the_content\',get_the_content( $more_link_text,
$stripteaser, $more_file )) ?>
Visit this link for more detail about your Problem
wpmudev