wordpress为自定义模板添加短代码

时间:2012-08-06 14:10:16

标签: wordpress plugins

可以将自定义模板的短代码添加到文章中吗?

lets say I have a page.example.php custom template 

我想创建一个插件,当短文包含在文章中时会返回此模板。

function get_Example_Template() {

        $shortcode_content=get_template_part('page','example')
    return $shortcode_content;
}

add_shortcode( 'shortcode_content', 'get_Example_Template');

2 个答案:

答案 0 :(得分:0)

在插件中声明一个初始化为false的变量。第一次调用函数时,将其设置为true。每次调用该函数时,只有在该变量为false时才会继续。

答案 1 :(得分:0)

答案可在此处找到:Calling WordPress get_template_part from inside a shortcode function renders template first

问题是get_template_part立即回响,而短代码需要返回。输出缓冲应解决问题。