Example #1
0
    </nav><!-- #nav-above -->
<?php 
}
?>

<?php 
/* Start the Loop */
while (have_posts()) {
    the_post();
    ?>

    <?php 
    //get_template_part( 'content', get_post_format() );
    ?>
    <?php 
    cwp::get_tpl_content(get_post_format() ? get_post_format() : 'general');
    ?>

<?php 
}
?>

<?php 
/* Display navigation to next/previous pages when applicable */
if ($wp_query->max_num_pages > 1) {
    ?>
    <nav id="nav-below">
        <h1 class="section-heading"><?php 
    _e('Post navigation', 'toolbox');
    ?>
</h1>
    }
    ?>

    <?php 
    /* Start the Loop */
    ?>
    <?php 
    while (have_posts()) {
        the_post();
        ?>

        <?php 
        //get_template_part('content', 'search');
        ?>
      <?php 
        cwp::get_tpl_content('search');
        ?>


    <?php 
    }
    ?>

    <?php 
    /* Display navigation to next/previous pages when applicable */
    ?>
    <?php 
    if ($wp_query->max_num_pages > 1) {
        ?>
        <nav id="nav-below">
            <h1 class="section-heading"><?php 
Example #3
0
<?php

/**
 * @package WordPress
 * @subpackage Toolbox-Core
 *
 */
the_post();
?>

<?php 
//get_template_part('content', 'page');
?>
<section id="page-content">
 <?php 
cwp::get_tpl_content('page');
?>
</section>


<?php 
comments_template('', true);