不允许搜索某些单词

时间:2012-06-23 作者:BobGCA

我想删除(不允许)带有某些关键字(如“of”、“a”)的搜索。

如果搜索是使用这些术语完成的,请不要返回任何内容或重定向到404页。。。

谢谢各位。

1 个回复
最合适的回答,由SO网友:vmassuchetto 整理而成

在你的functions.php, 和更改news 无论你想在你的网站上被阻止什么。

add_action(\'wp\', \'check_search\');
function check_search() {

    global $wp_query;

    if (!$s = get_search_query())
        return false;

    if (preg_match(\'/news/\', $s)) {
        $wp_query->set_404();
        status_header(404);
        get_template_part(404);
        exit();
    }

}
希望有帮助。

结束