在_Content()中添加快捷代码 时间:2019-10-28 作者:LovinQuaQua 我有一个自定义的帖子类型(事件),我为归档和单发制作了一个自定义模板。在single上,我想为每个帖子添加一个短代码,这个短代码提供当前帖子的所有动态数据。如何在\\u content()函数中输入快捷码? 1 个回复 SO网友:Sam 您可以使用\\u内容挂钩:https://developer.wordpress.org/reference/hooks/the_content/add_filter( \'the_content\', \'my_shortchode_in_single_page\' ); function my_shortchode_in_single_page($content){ if(is_single()) return $content . do_shortcode(\'YOUR SHORTCODE HERE\'); return $content; } 文章导航