File: /home/ochoayasociados/public_html/wp-content/themes/clevercourse/header-title.php
<?php
/*
* The template for displaying a header title section
*/
global $theme_option, $gdlr_post_option;
$header_background = '';
if( !empty($gdlr_post_option['header-background']) ){
if( is_numeric($gdlr_post_option['header-background']) ){
$image_src = wp_get_attachment_image_src($gdlr_post_option['header-background'], 'full');
$header_background = ' style="background-image: url(\'' . $image_src[0] . '\');" ';
}else{
$header_background = ' style="background-image: url(\'' . $gdlr_post_option['header-background'] . '\');" ';
}
}
?>
<?php if( is_page() && (empty($gdlr_post_option['show-title']) || $gdlr_post_option['show-title'] != 'disable') ){ ?>
<?php $page_background = ''; ?>
<div class="gdlr-page-title-wrapper" <?php echo $header_background; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<h1 class="gdlr-page-title"><?php the_title(); ?></h1>
<?php if( !empty($gdlr_post_option['page-caption']) ){ ?>
<span class="gdlr-page-caption"><?php echo gdlr_text_filter($gdlr_post_option['page-caption']); ?></span>
<?php } ?>
</div>
</div>
<?php }else if( is_single() && $post->post_type == 'post' ){
if( !empty($gdlr_post_option['page-title']) ){
$page_title = $gdlr_post_option['page-title'];
$page_caption = $gdlr_post_option['page-caption'];
}else{
$page_title = $theme_option['post-title'];
$page_caption = $theme_option['post-caption'];
}
?>
<div class="gdlr-page-title-wrapper" <?php echo $header_background; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<h3 class="gdlr-page-title"><?php echo gdlr_text_filter($page_title); ?></h3>
<?php if( !empty($page_caption) ){ ?>
<span class="gdlr-page-caption"><?php echo gdlr_text_filter($page_caption); ?></span>
<?php } ?>
</div>
</div>
<?php }else if( is_single() ){ // for custom post type
$page_title = get_the_title();
if( !empty($gdlr_post_option) && !empty($gdlr_post_option['page-caption']) ){
$page_caption = $gdlr_post_option['page-caption'];
}else if($post->post_type == 'portfolio' && !empty($theme_option['page-caption']) ){
$page_caption = $theme_option['portfolio-caption'];
}
?>
<div class="gdlr-page-title-wrapper" <?php echo $header_background; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<h1 class="gdlr-page-title"><?php echo gdlr_text_filter($page_title); ?></h1>
<?php if( !empty($page_caption) ){ ?>
<span class="gdlr-page-caption"><?php echo gdlr_text_filter($page_caption); ?></span>
<?php } ?>
</div>
</div>
<?php }else if( is_404() ){ ?>
<div class="gdlr-page-title-wrapper" <?php echo $header_background; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<h1 class="gdlr-page-title"><?php _e('404', 'gdlr_translate'); ?></h1>
<span class="gdlr-page-caption"><?php _e('Page not found', 'gdlr_translate'); ?></span>
</div>
</div>
<?php }else if( is_archive() || is_search() ){
if( is_search() ){
$title = __('Search Results', 'gdlr_translate');
$caption = get_search_query();
}else if( is_category() || is_tax('portfolio_category') || is_tax('product_cat') || is_tax('course_category') || is_tax('tribe_events_cat') ){
$title = __('Category','gdlr_translate');
$caption = single_cat_title('', false);
}else if( is_tag() || is_tax('portfolio_tag') || is_tax('product_tag') ){
$title = __('Tag','gdlr_translate');
$caption = single_cat_title('', false);
}else if( is_day() ){
$title = __('Day','gdlr_translate');
$caption = get_the_date('F j, Y');
}else if( is_month() ){
$title = __('Month','gdlr_translate');
$caption = get_the_date('F Y');
}else if( is_year() ){
$title = __('Year','gdlr_translate');
$caption = get_the_date('Y');
}else if( is_author() ){
$author_id = get_query_var('author');
$author = get_user_by('id', $author_id);
if( function_exists('gdlr_lms_get_user_info') ){
$title = gdlr_lms_get_user_info($author_id);
}else{
$title = get_user_meta($author_id, 'first_name', true) . ' ' . get_user_meta($author_id, 'last_name', true);
}
if($author->roles[0] == 'student'){
$caption = __('student','gdlr_translate');
}elseif ($author->roles[0] == 'instructor') {
$caption = __('instructor','gdlr_translate');
}elseif ($author->roles[0] == 'administrator') {
$caption = __('administrator','gdlr_translate');
}else{
$caption = $author->roles[0];
}
}else if( is_post_type_archive('product') ){
$title = __('Shop', 'gdlr_translate');
$caption = '';
}else{
$title = get_the_title();
$caption = '';
}
?>
<div class="gdlr-page-title-wrapper" <?php echo $header_background; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<span class="gdlr-page-title"><?php echo gdlr_text_filter($title); ?></span>
<?php if( !empty($caption) ){ ?>
<h1 class="gdlr-page-caption"><?php echo gdlr_text_filter($caption); ?></h1>
<?php } ?>
</div>
</div>
<?php }else if( (is_home() || is_front_page()) &&
(((!empty($_GET['login']) || !empty($_GET['register'])) && !is_user_logged_in()) || !empty($_GET['payment-method'])) ){ ?>
<div class="gdlr-page-title-wrapper" <?php echo $header_background; ?> >
<div class="gdlr-page-title-overlay"></div>
<div class="gdlr-page-title-container container" >
<h1 class="gdlr-page-title"><?php
if( !empty($_GET['login']) ){
_e('Login', 'gdlr_translate');
}else if( !empty($_GET['register']) ){
_e('Register', 'gdlr_translate');
}else if( !empty($_GET['payment-method']) && $_GET['payment-method'] == 'stripe' ){
_e('Stripe Payment', 'gdlr_translate');
}else if( !empty($_GET['payment-method']) && $_GET['payment-method'] == 'paymill' ){
_e('Paymill Payment', 'gdlr_translate');
}else if( !empty($_GET['payment-method']) && $_GET['payment-method'] == 'authorize' ){
_e('Authorize Payment', 'gdlr_translate');
}else if( !empty($_GET['payment-method']) && $_GET['payment-method'] == 'braintree' ){
_e('Braintree Payment', 'gdlr_translate');
}
?></h1>
</div>
</div>
<?php } ?>
<!-- is search -->