我不太确定这是您想要做的,但是,这是一种使用外部模板文件进行短代码输出的方法。
这是您的短代码函数(例如,在functions.php
):
function qt_shortcodez() {
return include \'template/shortcode.php\';
} // function qt_shortcodez
这就是输出(即。,
shortcode.php
):
<?php
ob_start();
?>
<strong>Hi there!</strong>
<p>
This is an include test for shortcodes...
</p>
<?php
return ob_get_clean();