WordPress搜索结果为零时自动跳转首页或者指定页面教程

评论

一般情况下WordPress搜索文章未找到内容时会提示“没有您要找的文章”之类的,如果想在搜索结果为零时,跳转到首页,可以将下面的代码添加到当前主题函数模板functions.php中:

add_action( 'template_redirect', 'redirect_empty_search_results' );
function redirect_empty_search_results() {
    global $wp_query;
    if ( is_search() && $wp_query->found_posts == 0 ) {
        wp_redirect( home_url() );
        exit();
    }
}

也可以修改其中的:

wp_redirect( home_url() )

跳转到指定的页面,比如:

wp_redirect( 'https://txy.ink/');

 

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: