예제 #1
0
파일: woocommerce.php 프로젝트: fovoc/make
    /**
     * Markup to show after the main WooCommerce content
     *
     * @since  1.0.0.
     *
     * @return void
     */
    function ttfmake_woocommerce_after_main_content()
    {
        // End content wrapper
        ?>
	</main>
	<?php 
        // Right sidebar
        ttfmake_maybe_show_sidebar('right');
    }
예제 #2
0
         * @since 1.2.3.
         *
         * @param string     $type    The default template type to use.
         * @param WP_Post    $post    The post object for the current post.
         */
        $template_type = apply_filters('make_template_content_search', 'search', $post);
        get_template_part('partials/content', $template_type);
        ?>
	<?php 
    }
    ?>

	<?php 
    get_template_part('partials/nav', 'paging');
    ?>

<?php 
} else {
    ?>
	<?php 
    get_template_part('partials/content', 'none');
}
?>
</main>

<?php 
ttfmake_maybe_show_sidebar('right');
?>

<?php 
get_footer();