在您的index.php
, 你应该有点像:
<?php if ( have_posts() ) : ?>
<!-- HTML -->
<?php while ( have_posts() ) : the_post() ?>
<!-- Post content -->
<?php endwhile ?>
<!-- HTML -->
<?php endif ?>
您可以将此代码扩展为“如果没有帖子并且正在搜索,则显示消息”:
<?php if ( have_posts() ) : ?>
<!-- HTML -->
<?php while ( have_posts() ) : the_post() ?>
<!-- Post content -->
<?php endwhile ?>
<!-- HTML -->
<?php elseif ( is_search() ) : ?>
<!-- No posts and is search, show message -->
<?php endif ?>