要在PHP文件中使用短代码(在post编辑器之外),您有一个方便的小函数do_shortcode();
因此,在您的情况下,您可以使用:
<?php
do_shortcode(\'[mingleforum]\');
?>
更新:在第一条评论之后,我想它是因为某种原因而广为人知的,
if you are expecting output from the shortcode then echo it out.
<?php
echo do_shortcode(\'[mingleforum]\');
?>