PATH:
var
/
www
/
vhosts
/
sandbox.dos-group.com
/
httpdocs
/
medifides
/
wp-content
/
themes
/
redbiz
/
tpl
<?php if ( is_page() && is_page_template( 'tpl/front-page.php' ) ) { echo '<div class="clearfix"></div>'; return; } $title = esc_html__( 'Archives', 'redbiz' ); if ( is_home() ) { if (is_front_page() ) { $title = esc_html__( 'Home', 'redbiz' ); } else { $title = esc_html( wp_title('',FALSE) ); } } elseif ( is_singular() ) { if (is_single()) { $title = get_the_title(); }elseif(is_page_template('tpl/page_single.php')) { $title = get_the_title(); } elseif(is_page_template('tpl/page_no_title.php')) { $title = ''; }else { $title = get_the_title(); } } elseif ( is_search() ) { $title = sprintf( esc_html__( 'Search results for "%s"', 'redbiz' ), get_search_query() ); } elseif ( is_404() ) { $title = esc_html__( 'Not Found', 'redbiz' ); } elseif ( is_author() ) { the_post(); $title = sprintf( esc_html__( 'Author Archives: %s', 'redbiz' ), get_the_author() ); rewind_posts(); } elseif ( is_day() ) { $title = sprintf( esc_html__( 'Daily Archives: %s', 'redbiz' ), get_the_date() ); } elseif ( is_month() ) { $title = sprintf( esc_html__( 'Monthly Archives: %s', 'redbiz' ), get_the_date( 'F Y' ) ); } elseif ( is_year() ) { $title = sprintf( esc_html__( 'Yearly Archives: %s', 'redbiz' ), get_the_date( 'Y' ) ); } elseif ( is_tax() || is_category() || is_tag() ) { $title = single_term_title( '', false ); } ?> <?php if (themesflat_choose_opt('show_page_title') != 1 || $title =='' ) return;?> <!-- Page title --> <div class="page-title"> <div class="overlay"></div> <div class="container"> <div class="row"> <div class="col-md-12 page-title-container"> <?php if ( themesflat_choose_opt('show_page_title_heading') == 1 ) { printf('<h1>%s</h1>',$title); } ?> <?php if ( themesflat_choose_opt( 'breadcrumb_enabled' ) == 1 ): themesflat_breadcrumb_trail( array( 'separator' => themesflat_choose_opt('breadcrumb_separator'), 'show_browse' => true, 'labels' => array( 'browse' => themesflat_choose_opt( 'bread_crumb_prefix', esc_html__( '', 'redbiz' ) ), 'home' => esc_html__( 'Home', 'redbiz' ) ) ) ); endif; ?> </div><!-- /.col-md-12 --> </div><!-- /.row --> </div><!-- /.container --> </div><!-- /.page-title -->
[-] blog.php
[open]
[-] site-header.php
[open]
[-] page_fullwidth.php
[open]
[-] feature-post.php
[open]
[-] front-page.php
[open]
[+]
..
[-] related-post.php
[open]
[-] comming-soon.php
[open]
[-] page_single.php
[open]
[-] portfolio-related.php
[open]
[-] topbar.php
[open]
[+]
header
[-] pagination.php
[open]
[-] feature-post-single.php
[open]
[-] social-share.php
[open]
[-] page-title.php
[open]