Advertisement
cyberdev

Untitled

Jul 24th, 2017
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.92 KB | None | 0 0
  1. <?php
  2. /**
  3. * The Template for displaying pages.
  4. *
  5. * @license For the full license information, please view the Licensing folder
  6. * that was distributed with this source code.
  7. *
  8. * @package Bimber_Theme 4.10
  9. */
  10.  
  11. // Prevent direct script access.
  12. if ( ! defined( 'ABSPATH' ) ) {
  13. die( 'No direct script access allowed' );
  14. }
  15.  
  16.  
  17. get_header();
  18. ?>
  19. <div id="primary" class="g1-primary-max">
  20. <div id="content" role="main">
  21.  
  22. <?php
  23. while ( have_posts() ) : the_post();
  24.  
  25. /*
  26. * Include the post format-specific template for the content. If you want to
  27. * use this in a child theme, then include a file called called content-page-full-___.php
  28. * (where ___ is the post format) and that will be used instead.
  29. */
  30. get_template_part( 'template-parts/content-page-full', get_post_format() );
  31. endwhile;
  32. ?>
  33.  
  34. </div><!-- #content -->
  35. </div><!-- #primary -->
  36.  
  37. <?php get_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement