正文:
如果在 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://www.baidu.com/’);
转载请注明:汇站网 » 如果 WordPress 搜索结果为空,自动跳转到网站首页