最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

customization - How to include custom PHP file both in header and footer files

programmeradmin2浏览0评论

I have created a custom file that both the header and the footer needs to render certain content.

If I only do include($_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/myTheme/myCustomFile.php'); in the header.php file it works as expected BUT only in the header.

Likewise with the footer, If I only do include($_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/myTheme/myCustomFile.php'); in the footer.php file it works as expected BUT only in the footer.

The moment I have the include on both files, the page renders up until the footer starts and then stops rendering.

How can I include this file so it can be accessed from anywhere in the theme?

I also tried the other import methods in PHP - require, require_once, and include_once – same deal.

Thank you in advance.

I have created a custom file that both the header and the footer needs to render certain content.

If I only do include($_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/myTheme/myCustomFile.php'); in the header.php file it works as expected BUT only in the header.

Likewise with the footer, If I only do include($_SERVER['DOCUMENT_ROOT'] . '/wp-content/themes/myTheme/myCustomFile.php'); in the footer.php file it works as expected BUT only in the footer.

The moment I have the include on both files, the page renders up until the footer starts and then stops rendering.

How can I include this file so it can be accessed from anywhere in the theme?

I also tried the other import methods in PHP - require, require_once, and include_once – same deal.

Thank you in advance.

Share Improve this question asked May 13, 2019 at 6:49 SergioSergio 1037 bronze badges 2
  • myCustomFile.php is in theme directory, so just add include 'myCustomFile.php'; in both files (footer and header). Do you have function or class definitions in included file? – nmr Commented May 13, 2019 at 6:59
  • @nmr thanks, but still not working. Same thing is happening, the page renders fine up until the footer and then stops rendering. But the header renders the information from myCustomFile.php fine. I do have functions in the custom file, but I don't think they are interfering because then it would not render on the header. – Sergio Commented May 13, 2019 at 7:05
Add a comment  | 

1 Answer 1

Reset to default 1

You wrote that you have a function definition in file that you include. I suspect that the reason is the function redeclaration error.

You should move the function definition from myCustomFile.php to functions.php.

You can also before each function definition in myCustomFile.php check whether there is already a function of the same name.

if ( ! function_exists('you_function_name') ) {
    function you_function_name() {
        // ...
    }
}
发布评论

评论列表(0)

  1. 暂无评论