我只想在一个分类法中匹配标记,所以我能够将代码简化如下。我的分类法是“post\\u标记”——只需根据需要交换您的标记即可。
$i = 0;
$search_query = get_search_query();
$term = get_term_by( \'name\', $search_query, \'post_tag\' );
if( $term !== false ) {
$i++;
$single_result = $term;
}
if( $i == 1 && is_object( $single_result ) ) {
$single_found = true;
} else {
$single_found = false;
unset( $single_result );
}
if( $single_found ) {
wp_redirect( get_bloginfo( \'url\' ) . \'/\' . $single_result->slug );
}