WordPress-当搜索查询返回单个结果时,重定向到post而不是archive页面
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了WordPress-当搜索查询返回单个结果时,重定向到post而不是archive页面相关的知识,希望对你有一定的参考价值。
Courtesy Kevin Chard at WPSnipp.com.Adding this snippet to the functions.php of your wordpress theme will redirect your search to the post automatically when wordpress only returns a single search result.
add_action('template_redirect', 'single_result'); function single_result() { if (is_search()) { global $wp_query; if ($wp_query->post_count == 1) { wp_redirect( get_permalink( $wp_query->posts['0']->ID ) ); } } }
以上是关于WordPress-当搜索查询返回单个结果时,重定向到post而不是archive页面的主要内容,如果未能解决你的问题,请参考以下文章