将 Wordpress 搜索限制为特定博客类别不起作用

Limiting Wordpress Search to specific blog category not working

所以我正在尝试在博客页面上创建一个搜索表单,以便它只搜索类别为“博客”的帖子 这是我正在使用的搜索表单代码:

<form  method="get" action="<?php echo esc_url( home_url( '/' ) ); ?>">

                   <input type="hidden"  name="cat" id="blog" value="7" />
                   
                    <input type="text" value="<?php echo get_search_query(); ?>" name="s" />
                    <input type="submit" value="Search" />
            </form> 

这是 search.php 代码:

<?php
/**
 * The template for displaying search results pages
 *
 * @link https://developer.wordpress.org/themes/basics/template-hierarchy/#search-result
 *
 * @package Scrap
 */

get_header();
?>

    <main id="primary" class="site-main">

        <?php
$s=get_search_query();
$args = array(
                's' =>$s
            );
    // The Query
$the_query = new WP_Query( $args );

if ( $the_query->have_posts() ) {
        _e("<h2 style='font-weight:bold;color:#000'>Search Results for: ".get_query_var('s')."</h2>");
        while ( $the_query->have_posts() ) {
           $the_query->the_post();
                 ?>
                    <li>
                        <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
                    </li>
                 <?php
        }
    }else{
?>
        <h2 style='font-weight:bold;color:#000'>Nothing Found</h2>
        <div class="alert alert-info">
          <p>Sorry, but nothing matched your search criteria. Please try again with some different keywords.</p>
        </div>
<?php } ?>

    </main><!-- #main -->

<?php
// get_sidebar();
get_footer();

搜索查询时,url 会加载,就像它仅限于类别:https://www.scraperapi.com/?cat=7&s=proxies 但它仍然显示来自类别之外的页面,并且它不会加载与搜索查询匹配的所有博客文章。 搜索表单位于 https://www.scraperapi.com/blog/,但它位于 display:hidden 顶部名为“博客搜索”的 div 中。

非常感谢您提供的任何帮助!!

尝试用 get_query_var and include the cat variable in the WP_Query as well. There is also some good info here 获得 query_variable“猫”。目前 $args 只包括带有变量 $s 的搜索词。

这是改编后的 $args:

$cat = get_query_var('cat');
$s=get_search_query();
$args = array(
            's' => $s,
            'cat' => $cat
        );
//etc..

或者,也可以修改 $wp_query 全局变量。这可以通过设置 $wp_query.

的 tax_query 来完成
global $wp_query;
$tax_query[] = array(
array(
    'taxonomy' => 'cat',
    'field'    => 'id',
    'terms'    => $cat,
  )
);
$wp_query->set( 'tax_query', $tax_query );

您可以通过 pre_get_posts 钩子过滤器拦截和修改查询。

<?php

//function.php
add_filter( 'pre_get_posts', 'wpso_70266736' );
if ( ! function_exists( 'wpso_70266736' ) ) {
    function wpso_70266736( $query ) {
        if( $query->is_search() && $query->is_main_query() && !isset( $_GET['category'] ) ) {
            $query->set_404();
            status_header( 404 );
            get_template_part( 404 );
            exit();
        };
    };
};