コード例 #1
0
ファイル: general.php プロジェクト: lamenath/fbp
function get_template_part($slug, $name = null)
{
    if ($name) {
        render_include($slug . '-' . $name);
    } else {
        render_include($slug);
    }
}
コード例 #2
0
    </div>
  </div>

</div>

<div class="container col-8-sm-pt col-7">

<?php 
rewind_posts();
if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>

    <?php 
        render_include('content');
        ?>

<?php 
    }
} else {
    ?>

    <p>Sorry, no posts matched your criteria.</p>

<?php 
}
?>

</div>
<!-- Handle footer -->
コード例 #3
0
function get_footer()
{
    render_include('footer');
}