我正在为wordpress主题创建一个插件,将模板加载到自己的目录中,而不是在主题中放置模板,使我独立于主题中包含模板,因为我创建了用于在条件下加载不同模板的短代码。下面是代码:
add_shortcode('template','add_template');
function add_template($ atts){
extract(shortcode_atts(array( 'template'=> ''
),$ atts));切换($ template){
case 'template1': include 'templates/template1.php'; break; case 'template2': include 'templates/template2.php'; break; default: include 'templates/template1.php'; break; } }
我的问题是在某些主题中我的插件开始在管理面板中显示页面有什么我做错了吗?请帮帮....