我总是用它来包含我的主题目录中的文件。
因此,如果我在主题目录中有一个名为functions的文件夹,其中有一个名为utils的文件。php(wp-content/themes/mytheme/functions/utils.php),然后您可以像这样包含文件
get_template_part( \'functions/utils\' ); // includes /functions/utils.php - .php gets added automatically
或主题根目录中的文件
get_template_part( \'sidebar\' ); // includes sidebar.php
我真的不知道用什么样的方法来实现这一点。对我来说,只使用文件的dir路径结构,只保留文件类型就可以了。