Example #1
0
</<?php 
            echo $tag_title;
            ?>
>            
        <?php 
        }
        ?>
        </div>
    <?php 
    }
    ?>
    
    <?php 
    if ($show_breadcrumb && (!function_exists('is_shop') || !is_shop() && !is_product())) {
        ?>
        <!-- BREDCRUMB -->          
        <div class="breadcrumbs">        	
        <?php 
        do_action('yit_before_breadcrumb');
        yit_breadcrumb(apply_filters('yit_breadcrumb_delimiter', '|'));
        ?>
        </div>  
    <?php 
    }
    ?>
   
    </div></div></div>
</div>
<!-- END PAGE META -->
<?php 
}
Example #2
0
 function yit_page_meta()
 {
     if (function_exists('YIT_Layout') && YIT_Layout()->show_title == '1') {
         echo '<h1>' . get_the_title() . '</h1>';
     }
     if (function_exists('YIT_Layout') && YIT_Layout()->show_breadcrumb == '1') {
         ?>
         <div class="breadcrumbs">
             <?php 
         yit_breadcrumb(apply_filters('yit_breadcrumb_delimiter', ' / '));
         ?>
         </div>
     <?php 
     }
 }
Example #3
0
yit_sidebar_layout();
?>
">
    <div class="inner group">
        <?php 
do_action('yit_before_content');
?>
        <!-- START CONTENT -->
        <div id="content-page" class="content group">
        <?php 
$show_title = yit_get_post_meta(get_the_ID(), '_show-title');
$show_breadcrumb = yit_get_post_meta(get_the_ID(), '_show-breadcrumb');
$tag_title = apply_filters('yit_page_title_tag', 'h2');
do_action('yit_before_breadcrumb');
if ($show_breadcrumb) {
    yit_breadcrumb(apply_filters('yit_breadcrumb_delimiter', '&raquo;'));
}
do_action('yit_before_page_title');
if ($show_title) {
    yit_string('<' . $tag_title . '>', get_the_title(), '</' . $tag_title . '>');
}
do_action('yit_loop_page');
comments_template();
?>
        </div>
        <!-- END CONTENT -->
        <?php 
do_action('yit_after_content');
?>
        
        <?php