Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2016
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.40 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <section class="content singlephp">
  4.  
  5. <?php get_template_part('inc/page-title'); ?>
  6.  
  7. <div class="pad group">
  8.  
  9. <?php while ( have_posts() ): the_post(); ?>
  10. <article <?php post_class(); ?>>
  11. <div class="post-inner group">
  12.  
  13. <h1 class="post-title"><?php the_title(); ?></h1>
  14. <p class="post-byline">
  15. Bijgewerkt op <?php if( get_the_modified_date() != get_the_date()) echo the_modified_date(); else the_date (); ?>
  16.  
  17. | <?php _e('by','hueman'); ?> <?php the_author_posts_link(); ?></p>
  18.  
  19. <?php if( get_post_format() ) { get_template_part('inc/post-formats'); } ?>
  20.  
  21. <div class="clear"></div>
  22. <div class="entry <?php if ( ot_get_option('sharrre') != 'off' ) { echo 'share'; }; ?>">
  23. <div class="entry-inner">
  24. <?php the_content(); ?>
  25. <?php wp_link_pages(array('before'=>'<div class="post-pages">'.__('Pages:','hueman'),'after'=>'</div>')); ?>
  26. </div>
  27. <?php if ( ot_get_option('sharrre') != 'off' ) { get_template_part('inc/sharrre'); } ?>
  28. <div class="clear"></div>
  29.  
  30. </div><!--/.entry-->
  31.  
  32. </div><!--/.post-inner-->
  33. </article><!--/.post-->
  34. <center>
  35. <a href="http://tipsthailand.nl/ebook" title="Klik hier!"><img src="http://tipsthailand.nl/wp-content/uploads/2016/02/ebook-banner-pijl.png" alt="Klik hier!" width="746" height="202" class="aligncenter size-full wp-image-13666" /></a>
  36. </center>
  37.  
  38. <?php endwhile; ?>
  39.  
  40. <div class="clear"></div>
  41.  
  42. <?php the_tags('<p class="post-tags"><span>'.__('Tags:','hueman').'</span> ','','</p>'); ?>
  43.  
  44. <?php if ( ( ot_get_option( 'author-bio' ) != 'off' ) && get_the_author_meta( 'description' ) ): ?>
  45. <div class="author-bio">
  46. <div class="bio-avatar"><?php echo get_avatar(get_the_author_meta('user_email'),'128'); ?></div>
  47. <p class="bio-name"><?php the_author_meta('display_name'); ?></p>
  48. <p class="bio-desc"><?php the_author_meta('description'); ?></p>
  49. <div class="clear"></div>
  50. </div>
  51. <?php endif; ?>
  52.  
  53. <?php if ( ot_get_option( 'post-nav' ) == 'content') { get_template_part('inc/post-nav'); } ?>
  54.  
  55. <?php if ( ot_get_option( 'related-posts' ) != '1' ) { get_template_part('inc/related-posts'); } ?>
  56.  
  57. <?php comments_template('/comments.php',true); ?>
  58.  
  59. </div><!--/.pad-->
  60.  
  61. </section><!--/.content-->
  62.  
  63. <?php get_sidebar(); ?>
  64.  
  65. <?php get_footer(); ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement