Advertisement
jkpersy

Untitled

Oct 16th, 2016
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.10 KB | None | 0 0
  1. <?php global $theme; ?>
  2.  
  3. <div <?php post_class('post page clearfix'); ?> id="post-<?php the_ID(); ?>">
  4. <h2 class="title"><?php the_title(); ?></h2>
  5.  
  6. <?php if(is_user_logged_in()) { ?>
  7. <div class="postmeta-primary"><span class="meta_edit"><?php edit_post_link(); ?></span></div>
  8. <?php } ?>
  9.  
  10. <div class="entry clearfix">
  11.  
  12. <?php
  13. if(has_post_thumbnail()) {
  14. the_post_thumbnail(
  15. array($theme->get_option('featured_image_width_single'), $theme->get_option('featured_image_height_single')),
  16. array("class" => $theme->get_option('featured_image_position_single') . " featured_image")
  17. );
  18. }
  19. ?>
  20.  
  21. <?php
  22. the_content('');
  23. wp_link_pages( array( 'before' => '<p><strong>' . __( 'Pages:', 'themater' ) . '</strong>', 'after' => '</p>' ) );
  24. ?>
  25.  
  26. </div>
  27.  
  28. </div><!-- Page ID <?php the_ID(); ?> -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement