Advertisement
Guest User

Untitled

a guest
Aug 1st, 2020
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. <article id="post-<?php the_ID(); ?>" <?php post_class('ct-single entry single'); ?>>
  2. <header>
  3. <h1 class="ct-single__post-title"><?php the_title() ?></h1>
  4. <?php get_template_part( 'template-parts/meta', 'single' ); ?>
  5. <?php if( has_post_thumbnail() ) : ?>
  6. <div class="ct-single__post-featured-image">
  7. <?php get_template_part( 'template-parts/featured', 'image' ); ?>
  8. </div>
  9. <?php endif; ?>
  10. </header>
  11.  
  12. <div class="ct-single__entry-content">
  13.  
  14. <!-- Content -->
  15. <?php the_content() ?>
  16.  
  17. <!-- Link Pages -->
  18. <?php get_template_part( 'template-parts/pagination', 'links'); ?>
  19.  
  20. <!-- Post Navigation -->
  21. <?php if( get_theme_mod( 'post_navigation', false ) === false ) the_post_navigation(); ?>
  22.  
  23. </div>
  24.  
  25. <!-- Sharing -->
  26. <?php get_template_part( 'template-parts/sharing' ); ?>
  27.  
  28. <!-- Author -->
  29. <?php get_template_part( 'template-parts/author' ); ?>
  30.  
  31. <!-- Comments -->
  32. <?php get_template_part( 'template-parts/comments' ); ?>
  33.  
  34. </article>
  35.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement