Advertisement
sixfootjames

Graphs WP Template

Jan 25th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4. Template Name: Graph Template
  5. Template Post Type: post
  6.  
  7. */
  8.  
  9. get_header();
  10.  
  11. ?>
  12.  
  13. <div class="fl-content-full container">
  14. <div class="row">
  15. <div class="fl-content col-md-12">
  16. <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  17. <?php get_template_part( 'content', 'page' ); ?>
  18. <?php endwhile;
  19. endif; ?>
  20. </div>
  21. </div>
  22. </div>
  23.  
  24. <?php get_footer(); ?>
  25. a
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement