| Server IP : 213.186.33.4 / Your IP : 216.73.216.222 Web Server : Apache System : Linux webm005.cluster103.gra.hosting.ovh.net 6.18.39-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Tue Jul 21 12:03:15 CEST 2026 x86_64 User : karinebmkh ( 644538) PHP Version : 8.4.22 Disable Function : _dyuweyrj4,_dyuweyrj4r,dl MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/karinebmkh/www2/wp-content/themes/thevoux-wp/inc/templates/header/ |
Upload File : |
<?php
if (is_category()) {
$cat = get_queried_object();
$cat_id = $cat->term_id;
$category_header = ot_get_option('category_headers');
$category_bg = isset($category_header[$cat_id]['bg']) ? $category_header[$cat_id]['bg'] : Thb_Theme_Admin::$thb_theme_directory_uri . 'assets/img/archive-title.jpg';
$category_color = isset($category_header[$cat_id]['color']) ? $category_header[$cat_id]['color'] : '#fff';
}
$header_boxed = ot_get_option('header_boxed', 'off');
?>
<!-- Start Category title -->
<?php if ($header_boxed === 'on') { ?>
<div class="row">
<div class="small-12 columns">
<?php } ?>
<div id="category-title" class="parallax_bg" <?php if ($category_bg) { ?>style="background-image: url(<?php echo esc_attr($category_bg); ?>);"<?php } ?>>
<div class="row">
<div class="small-12 medium-10 large-8 medium-centered columns">
<?php echo '<h1 style="color:'.$category_color.';">'.single_cat_title('', false).'</h1>'; ?>
<?php if ($desc = category_description()) { echo $desc; }?>
</div>
</div>
</div>
<?php if ($header_boxed === 'on') { ?>
</div>
</div>
<?php } ?>
<!-- End Category title -->