我这里有点挂机。我试图写一个if-else语句来显示缩略图(如果有),如果没有,则显示文章标题。这是我的代码:
<div id="primary" class="col-md-12 col-lg-12">
<main id="main" class="site-main" role="main">
<?php
// the query
$the_query = new WP_Query( array(\'post_type\' => \'lender\') ); ?>
<?php if ( $the_query->have_posts() ) : ?>
<div class="row">
<!-- the loop -->
<?php while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<div class="col-sm-6 col-md-4 col-lg-6">
<?php if ( has_post_thumbnail()) {
the_post_thumbnail();
} else { ?>
<?php the_title( \'<h4>\', \'</h4>\'); ?>
} ?>
</div>
<?php endwhile; ?>
<!-- end of the loop -->
</div> <!-- .row -->
<?php wp_reset_postdata(); ?>
<?php else : ?>
<p><?php _e( \'Sorry, no posts matched your criteria.\' ); ?></p>
<?php endif; ?>
</main><!-- #main -->
</div><!-- #primary -->
我知道这个问题可能是一个超级容易解决的问题,任何帮助都将不胜感激!