如何使帖子模板只包含快捷代码?

时间:2011-02-25 作者:user931

我以前每次都会发布相同的短代码(短代码加载动态内容)。因此,我想将这些短代码打包到一个模板中,用于我的帖子。我该怎么做?

1 个回复
最合适的回答,由SO网友:Wok 整理而成

您可能想签出。。。http://codex.wordpress.org/Function_Reference/do_shortcode

但是在模板中使用短代码的要点如下。。。

// Use shortcode in a PHP file (outside the post editor). do_shortcode(\'[gallery]\');

结束

相关推荐

Nested Shortcode Detection

如果您熟悉此代码<?php $pattern = get_shortcode_regex(); preg_match(\'/\'.$pattern.\'/s\', $posts[0]->post_content, $matches); if (is_array($matches) && $matches[2] == \'YOURSHORTCODE\') { //shortcode is being used }&#