是否可以将短代码添加到自定义模板以包含在文章中?
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');