2

我想知道,根据下面的代码,我想把我的 wp_redirect 函数放在哪里,因为它当前所在的位置除了喷发和 sais 什么都不做:

 Warning: Cannot modify header information - headers already sent by (output started at /***/***/WordPress/WordPressDev/wp-includes/script-loader.php:664) in /***/***/WordPress/WordPressDev/wp-includes/pluggable.php on line 881

我得到是因为页面已经加载。但我不确定在哪里调用这个函数。

我已经用星星和 example.com 替换了我的网站和任何“个人数据”。这段代码如何工作,它只是不会重定向我。

想法?

function get_latest_version_zip(){
             global $wp_filesystem;

             if(current_user_can('update_themes')){
                $aisis_file_system_structure = WP_Filesystem();
                $aisis_cred_url = 'admin.php?page=aisis-core-update';
                if($aisis_file_system_structure == false){
                    request_filesystem_credentials($aisis_cred_url);
                    $this->credential_check = true;
                }

                $aisis_temp_file_download = download_url( 'http://example.com/aisis/aisis_update/Aisis2.zip' );

                if(is_wp_error($aisis_temp_file_download)){
                    $error = $aisis_temp_file_download->get_error_code();
                    if($error == 'http_no_url') {
                        add_action( 'admin_notices', 'aisis_framework_download_update_erors' );
                    }
                }

                $aisis_unzip_to = $wp_filesystem->wp_content_dir() . "/themes/" . get_option('template');

                $this->delete_contents_check(); //Check if we need to delete the aisis core folder.

                $aisis_do_unzip = unzip_file($aisis_temp_file_download, $aisis_unzip_to);

                unlink($aisis_temp_file_download); //delete temp jazz

                if(is_wp_error($aisis_do_unzip)){
                    $error = $aisis_do_unzip->get_error_code();
                    if($error == 'incompatible_archive') {
                        $this->aisis_incompatible_archive_errors();
                    }
                    if($error == 'empty_archive') {
                        $this->aisis_empty_archive_errors();
                    }
                    if($error == 'mkdir_failed') {
                        $this->aisis_mkdir_failed_errors();
                    }
                    if($error == 'copy_failed') {
                        $this->aisis_copy_failed_errors();
                    }
                    return;
                }
                //throwing errors
                wp_redirect(admin_url('admin.php?page=aisis-core-options'));
                exit;

             }
         }

在我的functions.php文件中,我放置了以下代码:

 function callback($buffer){
     return $buffer;
 }

 function add_ob_start(){
     ob_start("callback");
 }

 function flush_ob_end(){
     ob_end_flush();
 }

 add_action('wp_head', 'add_ob_start');
 add_action('wp_footer', 'flush_ob_end');

有了这个我仍然得到错误,我想我误解了一些东西......

4

3 回答 3

3

只需替换以下行

add_action('wp_head', 'add_ob_start');

add_action('init', 'add_ob_start');

输出缓冲应该在任何发送/回显到浏览器之前开始,并且wp_head钩子发生的时间比钩子稍晚,直到那时标头已经发送,并且在任何内容回显/发送到浏览器之前init将其保留/放置在您的顶部。functions.php

于 2012-09-26T20:47:25.057 回答
0

另一种可能性是添加优先级:

add_action('wp_head', 'add_ob_start', 1);

第三个参数是 $priority。

此外,如果您要挂接多个函数,它可以让您完全控制执行链。

于 2013-10-30T14:28:33.077 回答
0

问题是在 wordpress 的某个地方调用了该header()函数,并且在关闭时已经将一些输出发送到客户端output buffering

必须在任何输出之前发送标头,否则您会收到您描述的错误。

wp_redirect(admin_url('admin.php?page=aisis-core-options'));

上面的行设置了这样的标题:header('Location: admin.php......');

通过 php.ini、wordpress 的 index.php 或只是在任何内容回显到客户端之前打开输出缓冲应该处理该错误。

详细信息/文档可以在这里找到:http: //php.net/manual/en/book.outcontrol.php

我能想到的最简单的方法是让你的 wordpress index.php 看起来像这样:

ob_start();
// content of your index.php here
ob_flush();
于 2012-09-26T19:26:42.470 回答