Example #1
0
<?php

/**
 * @package WordPress
 * @subpackage WP-Bootstrap
 */
get_header();
get_template_part('menu', 'index');
//the  menu + logo/site title
?>

<div class="full-width clearfix" data-section="homepage">
  <?php 
echo TL_WP_Get_Stackable();
?>
</div>

<?php 
get_footer();
Example #2
0
function TL_WP_Shortcode_Stackable($_atts, $_content = null)
{
    global $post;
    shortcode_atts(array('amount' => ''), $_atts);
    return TL_WP_Get_Stackable();
}