子目录中的WordPress主题文件

时间:2019-04-11 16:25:33

标签: wordpress wordpress-theming themes

正在处理当前项目,该项目中有特定主题文件的github存储库。当我克隆存储库时,它将主题文件夹放在一个单独的目录中(如应有的目录),例如:

/wp-content/themes/projectfolder/themefolder

我想知道的是,是否有可能让WordPress在子目录中查找该主题而不必将整个git项目移到themes文件夹中,因为那样会使事情一团糟。 >

1 个答案:

答案 0 :(得分:0)

在您的wp-config.php文件中,添加以下内容:

/** Sets up WordPress vars and included files. */
require_once(ABSPATH . 'wp-settings.php');
register_theme_directory('/wp-content/themes/projectfolder');

通常,register_theme_directory();函数用于在插件内定义主题文件夹,但是,在此之外还有一些很好的用例。