如何包含子主题的文件

时间:2019-06-25 14:51:15

标签: php wordpress

我的子主题根目录中有一个名为image-svg.php的文件

在childthemename / page-templates / filexample.php下的另一个文件中

我想包含image-svg.php

我尝试了不同的方法,但是没有包含该文件:

<?php get_template_part('africa-map-svg.php'); ?>
<?php include('africa-map-svg.php'); ?>

如何包含此文件?

2 个答案:

答案 0 :(得分:2)

您可以使用get_template_directory来检索当前主题的目录。

npm run android

答案 1 :(得分:0)

您可以使用以下功能包括任何文件。 get_theme_file_uri()

请尝试这个

<?php require_once (get_theme_file_uri('/africa-map-svg.php')); ?>