我可以将我的WordPress主题文件放在另一个文件夹中吗?

时间:2015-12-12 作者:user1778856

当前我的文件夹结构类似

...\\themes\\MyTheme
  - \\lib
  - \\src
  - index.php
  - style.css
  - more theme files
  - .gitignore
  - README.md
  - many other non-Wordpress files
我想把它改成

...\\themes\\MyTheme
  - \\lib
  - \\src
  - \\wp - Pretty much all my theme\'s .php files
  - .gitignore
  - README.md
  - many other non-Wordpress files

1 个回复
SO网友:Por

答案是肯定的。就像他在评论中提到的@kvaradha。如果你把

header.php
footer.php
index.php
functions.php
style.css
必须位于/wp-content/themes/your-theme文件夹中。以及您的其他库、组件和包含可以放在您喜欢的任何地方。但是,请确保文件和文件夹结构灵活。祝你好运:)

相关推荐

子主题中指向子主题的GET_TEMPLATE_DIRECTORY_URI

根据文件(https://codex.wordpress.org/Child_Themes 和https://developer.wordpress.org/reference/functions/get_template_directory_uri/), 我的理解是get_template_directory_uri() 如果在子主题中使用,将返回父主题目录的URL。但这并没有发生在我身上。在我试图发展的儿童主题中,当我使用get_template_directory_uri() 它返回子主题目录的UR