我需要使用我的 wordpress 插件之类header( 'Location: http://location.com' );
或header("Content-disposition: attachment; filename=$fileName");
来自我的 wordpress 插件的 PHP 标头,但它似乎不会。我知道在调用页眉之前需要使用它们,所以我尝试使用 init 钩子:
add_action('init', 'test');
function test() {
header( 'Location: http://location.com' ) ;
}
但它没有用。