我正在使用(并且喜欢)WordPress的Relevanssi插件。在用户搜索中记录两次搜索时出现问题。
Found this comment in the plugin comments about it being a problem with the template
在挖掘我的搜索模板时,我只是删除了所有内容,然后逐渐添加了一些内容,直到我再次获得双重结果。
这是我的搜索模板中似乎是麻烦制造者的一行,但我不一定明白为什么。
<div style="background-image: url();"></div>
这对我来说毫无意义。如果STATIC html的那一位在content-search.php
模板中,我会记录双重搜索。如果我删除它,或者所有文章都有get_the_post_thumbnail_url
s,那么我只会记录一次搜索。
似乎与style="background-image:url();"
没有价值有关?
的search.php:
<?php
global $wp_query;
if ( $wp_query->found_posts > 12 ) {
$search_count = '1 - ' . $wp_query->post_count . ' of ' . $wp_query->found_posts;
} else {
$search_count = $wp_query->post_count;
}
?>
<div class="search-pg-header">
<?php include get_template_directory() . '/templates/partials/search-form.php'; ?>
<?php if ( get_search_query() !== '' ) { ?>
<h1>Showing <?php echo $search_count; ?> results for <?php echo get_search_query() ?></h1>
<?php } // end if ?>
</div>
<div class="posts-container">
<?php if ( have_posts() ):
while ( have_posts() ) : the_post();
get_template_part( 'templates/content', 'search' );
endwhile;
else: ?>
<p>There are no articles that matched your search.</p>
<?php endif; ?>
</div>
<?php if ( $wp_query->max_num_pages > 1 ) { ?>
<button>Show More</button>
<?php } // end if ?>
内容-search.php中:
<article data-link="<?php the_permalink(); ?>">
<div style="background-image: url(<?php the_post_thumbnail_url('card-white');?>);"></div>
<div>
<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
<?php if (get_post_type() === 'post') { get_template_part('templates/entry-meta'); } ?>
<?php if ( has_excerpt() ) {?>
<p><?php echo get_the_excerpt(); ?></p>
<?php } //end if ?>
</div>
</article>
答案 0 :(得分:0)
我做了全新的Wordpress安装,并用2017主题测试了这个离奇的理论。确实如此,如果我将<div style="background-image:url();"></div>
添加到模板template-parts/post/content-excerpt.php
,则会记录重复搜索。
如果该div有图像:<div style="background-image:url(http://image.com);"></div>
,则只记录一次搜索。
至少对此有一个解释是绝对好的。
我能够通过检查是否有一个bkgd图像来防止这种情况,然后再将内联样式呈现给页面,现在我知道将来会更加小心这种事情!
$style = ! empty( get_the_post_thumbnail_url($the_post, 'card-white') ) ?
'style="background-image: url(' . get_the_post_thumbnail_url($the_post, 'card-white') . ');"' : '';
<div class="article-card__img" <?php echo $style; ?>></div>