December 2017
Beginner
458 pages
7h 52m
English
So now what we want to do is take care of the posts that don't have an image. Right now the Hello World post doesn't have one and it's not showing up because we haven't put any code in that yet. So let's check for the thumbnails now:
<div class="col-md-12"> <h2> <a href="<?php echo the_permalink(); ?>"> <?php echo the_title(); ?> </a> </h2> <p class="meta"> Posted at <?php the_time(); ?> on <?php the_date(); ?> by <strong><?php the_author(); ?></strong> </p> <div class="excerpt"> <?php echo get_the_excerpt(); ?> </div> <br> <a class="btn btn-default" href="<?php the_permalink(); ?>"> Read More » </a>
Read now
Unlock full access