3

我正在尝试使用 template_redirect 通过 Wordpress 中的 URL 加载插件的特定文件。该文件正确显示,但是发送的标头是 404,而不是 200。

插件中的代码是:

add_filter('query_vars','plugin_add_jb');
function plugin_add_jb($vars) {
    $vars[] = 'jb_ajax';
    return $vars;
}

add_action('template_redirect', 'plugin_jb_check');
function plugin_jb_check() {
    if(intval(get_query_var('jb_ajax')) == '1') {
        $jb_action = $_GET['action'];
        if($jb_action == 'refer') {
            include('./wp-content/plugins/JobBounties/ajax_refer.php');
        }
        elseif ($jb_action == 'refer_post') {
            include('./wp-content/plugins/JobBounties/ajax_refer_post.php');
        }
        exit;
    }
}

有人知道为什么会抛出 404 吗?

4

1 回答 1

9

Wordpress 可能无法识别此插件或数据并抛出 404 状态。

要对抗 404 状态,只需对其进行测试,删除标志,然后使用包含发送标头 200 状态。

function wp15905643_include($template) {
    global $wp_query;
    if ($wp_query->is_404) {
        $wp_query->is_404 = false;
    }
    header("HTTP/1.1 200 OK");
    include($template);

}

然后plugin_jb_check像这样在你的函数中使用它,如果有帮助的话。

wp15905643_include('./wp-content/plugins/JobBounties/ajax_refer.php');

来源在这里

于 2013-04-09T15:58:11.077 回答