如何在插件中要求主题文件?

时间:2016-07-08 13:33:34

标签: php wordpress

我正在开发一个插件,并在我的插件中尝试require我的主题中的PHP文件。 现在,这段代码可以运行:

require('/home/starter/public_html/wp-content/themes/starter/inc/more_posts.php');

但我希望插件自动检索主题的dir路径,因此我需要添加的唯一内容是/inc/more_posts.php,与plugin_dir_path( __FILE__ )函数对插件的操作相同。有没有办法做到这一点?

1 个答案:

答案 0 :(得分:3)

使用,

get_stylesheet_directory();

它检索当前主题/子主题的样式表目录Path。

了解更多信息:https://codex.wordpress.org/Function_Reference/get_stylesheet_directory