有趣的是,你知道如何包装一个页面模板。如果没有,请参阅codex.
将文件放在插件中的任何位置,此代码将帮助您将其包含在页面模板选择器中。
function include_template() {
return locate_template( array (
\'templateone.php\',
\'templatetwo.php\',
\'templatethree.php\',
)
);
}
add_action(\'template_include\', \'include_template\');