content-page.php 521 B

123456789101112131415
  1. <article <?php post_class('post'); ?>>
  2. <div class="post-content">
  3. <?php if(has_post_thumbnail()){
  4. if ( is_single() ) {
  5. the_post_thumbnail( '', array( 'class'=>'img-fluid','alt' => esc_attr( get_the_title() ) ) );
  6. }else{
  7. echo '<figure class="post-thumbnail" href="'.esc_url(get_the_permalink()).'">';
  8. the_post_thumbnail( '', array( 'class'=>'img-fluid','alt' => esc_attr( get_the_title() ) ) );
  9. echo '</figure>';
  10. }}?>
  11. <div class="entry-content">
  12. <?php the_content();?>
  13. </div>
  14. </div>
  15. </article>