Advertisement
Uranbold

page-sidebar-right.php

Jul 20th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.13 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template Name: 2: Right Sidebar
  4. */
  5.  
  6. get_header();
  7.  
  8. the_post(); ?>
  9.  
  10. <div class="row">
  11. <div class="content-area col-md-8">
  12. <div class="single-content">
  13. <article <?php post_class(); ?>>
  14. <?php
  15. echo '<h2 class="page-title">' . get_the_title() . '</h2>';
  16. if (has_post_thumbnail($post->ID)) {
  17. echo '<div class="entry-media">';
  18. echo ever_image('ever_blog_thumb');
  19. echo '</div>';
  20. }
  21. ?>
  22. <div class="single-padding">
  23. <?php the_content(); ?>
  24. <?php wp_link_pages(); ?>
  25. <div class="clearfix"></div>
  26. </div>
  27. </article>
  28. <div class="single-padding">
  29. <?php comments_template('', true); ?>
  30. </div>
  31. </div>
  32. </div>
  33. <?php
  34. get_sidebar();
  35. ?>
  36. </div>
  37.  
  38. <?php
  39. get_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement