Advertisement
Guest User

Untitled

a guest
Aug 24th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. <?php
  2. global $post;
  3. $page_for_posts_id = get_option( 'page_for_posts' );
  4. if ( $page_for_posts_id ) :
  5. $post = get_page( $page_for_posts_id );
  6. setup_postdata( $post );
  7. ?>
  8. <div id="post-<?php the_ID(); ?>">
  9. <header>
  10. <h1><?php the_title(); ?></h1>
  11. </header>
  12. <div class="entry-content">
  13. <?php the_content(); ?>
  14. </div>
  15. </div>
  16. <?php
  17. rewind_posts();
  18. endif;
  19. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement