Advertisement
cyberdev

Untitled

Jul 24th, 2017
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <?php
  2. /**
  3. * Template Name: Page: With Sidebar
  4. *
  5. * 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.  
  13. if ( ! defined( 'ABSPATH' ) ) {
  14. die( 'No direct script access allowed' );
  15. }
  16.  
  17. get_header();
  18. ?>
  19.  
  20. <div id="primary" class="g1-primary-max">
  21. <div id="content" role="main">
  22.  
  23. <?php
  24. while ( have_posts() ) : the_post();
  25.  
  26. // Include the page content template.
  27. get_template_part( 'template-parts/content', 'page' );
  28. endwhile;
  29. ?>
  30.  
  31. </div><!-- #content -->
  32. </div><!-- #primary -->
  33.  
  34. <?php get_footer();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement