投稿一覧で投稿に本文がない場合リンクを貼らない

wordpress

<?php while (have_posts()) : the_post(); ?>
  <?php if(empty($post->post_content)) : ?>
    <li><?php the_time('y.m.d'); ?><?php the_title(); ?></li>
  <?php else : ?>
    <li><a href="<?php the_permalink() ?>"><?php the_time('y.m.d'); ?><?php the_title(); ?></a></li>
  <?php endif; ?>
<?php endwhile; ?>
<?php wp_reset_query(); ?>

カスタム投稿の場合は記事を取得してから上記を。