Can anyone guide me trow the files that need to update in order to get
no result found
on search redirect to other page or different text (like leading into fill form)?
I am using wp woocomerce and woof search plug in. I found on the search.php that gives me a hit.
</div>
<?php graphene_posts_nav(); ?>
<?php else : ?>
<?php get_template_part( 'loop', 'not-found' ); ?>
<?php endif;
}
答案 0 :(得分:0)
是的,您需要根据以下找到的帖子使用if else条件。
<?php if ( have_posts() ) : ?>
//display search template
<?php else : ?>
//display no results template
<?php get_template_part( 'no-results', 'search' ); ?>
<?php endif; ?>
在这种情况下,没有结果模板将是no-results-search.php