示例#1
0
<?php 
get_header();
?>

<?php 
/** Themify Default Variables
 *  @var object */
global $themify;
?>

<!-- layout-container -->
<div id="layout" class="pagewidth clearfix">

	<?php 
themify_content_before();
// hook
?>
	<!-- content -->
	<div id="content" class="clearfix">
    	<?php 
themify_content_start();
// hook
?>

		<?php 
/////////////////////////////////////////////
// 404
/////////////////////////////////////////////
if (is_404()) {
    ?>
示例#2
0
    /**
     * Add initial portion of wrapper
     * @since 1.4.6
     */
    function themify_before_shop_content()
    {
        ?>
		<!-- layout -->
		<div id="layout" class="pagewidth clearfix">

			<?php 
        themify_content_before();
        // Hook
        ?>

			<!-- content -->
			<div id="content" class="<?php 
        echo is_product() || is_shop() ? 'list-post' : '';
        ?>
">

				<?php 
        if (!themify_check('setting-hide_shop_breadcrumbs')) {
            themify_breadcrumb_before();
            woocommerce_breadcrumb();
            themify_breadcrumb_after();
        }
        themify_content_start();
        // Hook
    }