这可能是完全不可能的,但我想创建一个新的wordpress插件,它将有自己的模板和页面子集。最好的方法是什么?该插件将在wordpress网站的三个页面上使用。它将使用相同的主题,尽管它将有三个不同的页面模板。是否可以将模板分组到主题或插件内的子文件夹中。页面将是静态的ie不需要对wp管理员可用。
当前情况。。。。。
选项a->主题根目录中的模板,使用wordpress页面管理。
下面是我希望的两个想法。。。。
选项b->带有静态页面的主题中的子文件夹(无需在wp admin中创建/编辑)。
选项c->插件文件夹中使用当前主题的自包含模板,以及带有静态页面的自定义过滤器/操作(无需在wp admin中创建/编辑)。
这个插件本质上是wordpress网站的一部分,它使用wordpress对象和数据库组合在一起。它将有自己的循环和页面。
/wp-content/plugins/mycustomplugin/mycustomplugin.php
/wp-content/plugins/mycustomplugin/templates/default.php
/wp-content/plugins/mycustomplugin/templates/template2.php
/wp-content/plugins/mycustomplugin/templates/mycustomplugin-loop.php
或
/wp-content/plugins/mycustomplugin/mycustomplugin.php
/wp-content/themes/mytheme/mycustomplugin/mycustomplugin.php
/wp-content/themes/mytheme/mycustomplugin/template2.php
/wp-content/themes/mytheme/mycustomplugin/mycustomplugin-loop.php