从另一个php文件调用文件时获取get_header时出错

时间:2014-08-28 06:08:18

标签: php wordpress

我有一个名为 viewProfile.php

的文件
<?php
get_header(); ?>

    //some code

<?php get_footer(); ?>  

在模板中使用时工作正常。

从另一个文件成功登录后调用

$path=get_stylesheet_directory_uri()."/viewProfile.php";
header("Location: $path");
  

错误为Call to undefined function get_header()

1 个答案:

答案 0 :(得分:0)

您需要包含wp-blog-header.php文件以启动新创建的文件中的所有WP函数。

require('../../wp-blog-header.php');