Guest User

Untitled

a guest
Jan 20th, 2019
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.55 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3.  
  4. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  5.  
  6. <div class="stitle">
  7. <div class="newsport" style="background-image:url(<?php echo get_the_post_thumbnail_url($post->ID, 'medium'); ?>)"></div>
  8. <h1><?php the_title(); ?></h1>
  9. </div>
  10. <div class="thecontent wrap">
  11. <?php echo get_the_date(); ?>
  12. <p><?php the_content(); ?></p>
  13. </div>
  14.  
  15. <div class="wrap">
  16. <?php if ( comments_open() || get_comments_number() ) :
  17. comments_template();
  18. endif;?>
  19. </div>
  20.  
  21. <?php endwhile; ?>
  22. <?php endif; ?>
Add Comment
Please, Sign In to add comment