WordPress:如何覆盖父主题中包含的php文件?

时间:2016-06-04 05:49:29

标签: php wordpress

我有一个具有以下目录结构的wp站点。 目录结构:

themes
 |-parent-theme
 |  |-index.php
 |  |-some-footer.php
 |
 |-parent-theme-child
    |-some-footer.php

父主题目录包含一堆php文件,index.php就是其中之一。
index.php文件使用(包括)some-footer.php。

<?php include('some_footer.php'); ?>

我试图通过创建一个具有完全相同名称的文件来覆盖这个some-footer.php,但它无效。

我该怎么做才能使这项工作?

1 个答案:

答案 0 :(得分:1)

由于它是儿童主题,请尝试使用get_stylesheet_directory_uri();

<?php include( get_stylesheet_directory_uri() . '/some_footer.php'); ?>