自定义模板earch.php中的搜索结果

时间:2018-11-23 作者:abdo sayed

现在我在搜索结果页面(search.php)中遇到了一个问题,结果是由索引页面模板显示的,而不是它的模板,它显示所有帖子,不管搜索者是否输入了内容

我的索引。php页面

<?php get_header(); ?>
<?php
$search = $_get[\'search\'];
$args = array(
    \'post_title_like\' => $search
);
$res = new wp_query($args);
if ($res -> have_posts()){
    while ($res -> have_posts()) {
        $res -> the_post();
        ?>

        <!--start section 1-->
        <section class="section1" style="margin: 0;box-shadow: 0 2px 10px">
            <div class="container">
                <a href="<?php echo get_post_permalink(); ?>">
                    <div class="img">
                        <?php the_post_thumbnail(); ?>
                    </div>
                    <h1 class="page-title"><?php the_title(); ?></h1>
                </a>
                <div class="clearfix"></div>
            </div>
        </section>
        <!--end section 1-->

        <?php the_content(); ?>

        <?php
    }
}
?>
<?php get_footer() ?>
我的搜索。php页面

<?php get_header(); ?>
<?php
if (have_posts()){
    while (have_posts()) {
        the_post();
        ?>
        <section class="section1" rule="main">
            <div class="container">
                <div class="img">
                    <?php the_post_thumbnail(); ?>
                </div>
                <h1 class="page-title"><?php the_title(); ?></h1>
                <div class="clearfix"></div>
            </div>
        </section>
        <?php
    }
}
?>
<?php get_footer(); ?>
如果您需要更多代码,请告诉我

1 个回复
最合适的回答,由SO网友:Jacob Peattie 整理而成

搜索。当使用?s= 查询?search=. 确保name 搜索表单中输入的属性为s:

<input type="search" name="s">
和您的索引。php文件绝对不应该使用这样的自定义查询。使用与搜索中相同的主循环。php。WordPress已经为您查询了正确的帖子。

if ( have_posts() ){
    while ( have_posts() ) {
        the_post();
    }
}

结束

相关推荐

Media searching ignored

我们的网站使用WordPress,有很多媒体文件。我们网站的媒体名称格式如下[Car brand\'s name]-[number].jpg, 例如Tesla-1.jpg 或Aston Martin-3.jpg. 因此,我们可以通过搜索文章的名称轻松找到文章的特定媒体。但突然间,我们找不到媒体。我们正在尝试搜索名称为的媒体,但搜索结果不变。(不搜索任何内容时的媒体屏幕)(搜索Aston Martin时的媒体屏幕)当然,在填充搜索文本框后,它会显示一个加载图标,但结果总是一样的。为什么会发生这种情况?更新+