Skip to content

Instantly share code, notes, and snippets.

@carlosonweb
Last active August 10, 2018 23:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save carlosonweb/b570c7a7bf5efd07982c10839bbf564a to your computer and use it in GitHub Desktop.
Save carlosonweb/b570c7a7bf5efd07982c10839bbf564a to your computer and use it in GitHub Desktop.
Beaver Builder Theme Full-Width Page Template for the Puzzle CPT
<?php
/*
Template Name: Puzzle Full Width
Template Post Type: puzzle
*/
get_header();
?>
<div class="fl-content-full container">
<div class="row">
<div class="fl-content col-md-12">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', 'page' ); ?>
<?php endwhile; endif; ?>
</div>
</div>
</div>
<?php get_footer(); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment