在 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/');
转自 知更鸟 博客