好。我在root上安装了wordpress。我还在wordpress中上传了一个子文件夹。 www.mysite.com/subfolder/我希望能够在子文件夹中添加一些php页面,因为我需要它来调用一些脚本。我只是想能够将wordpress标题添加到其中。这些页面出现了但是当我添加wordpress标题时,它们全部变成空白或者什么都不做。 我试过了... “
<?php include 'http://www.mywebsite.org/wp-blog-header.php'; ?>
<?php require('http://www.mywebsite.org/wp-blog-header.php');?>
并尝试了
<?php include 'http://www.mywebsite.org/wp-content/themes/MYTHEME/header.php'; ?>
<?php require('http://www.mywebsite.org/wp-content/themes/MYTHEME/header.php');?>
和
<?php include './wp-content/themes/MYTHEME/header.php'; ?>
<?php require('./wp-content/themes/MYTHEME/header.php');?>
似乎没有任何效果。
任何帮助都会很棒......谢谢。
答案 0 :(得分:1)
问题是您是否包含wp-blog-header.php
的网址,您应该包含相对路径,然后像往常一样调用get_header();
。所以你应该有这样的东西:
<?php
require('/the/path/to/your/wp-blog-header.php');
get_header();
?>
查看Integrating WordPress with Your Website Codex条目。