Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hightechbranding/29a3b2c9eaa5391e51b60d1009e8632c to your computer and use it in GitHub Desktop.
Save hightechbranding/29a3b2c9eaa5391e51b60d1009e8632c to your computer and use it in GitHub Desktop.
BeaverBuilder Custom field in Template
<?php
/*
Template Name: Custom Field Page
Template Post Type: page, post
*/
get_header(); ?>
<?php
FLBuilder::render_query(array(
'post_type' => 'fl-theme-layout',
'p' => 7825
));
?>
<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