????JFIF??x?x????'
| Server IP : 104.21.30.238 / Your IP : 216.73.216.145 Web Server : LiteSpeed System : Linux premium151.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64 User : tempvsty ( 647) PHP Version : 8.0.30 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /././home/./tempvsty/pontiacques.org/wp-content/themes/layerswp/partials/ |
Upload File : |
<?php
/**
* This partial is used for displaying the Site Header when in archive pages
*
* @package Layers
* @since Layers 1.0.0
*/
global $layers_page_title_shown;
// Make sure $layers_page_title_shown exists before we check it.
if ( ! isset( $layers_page_title_shown ) ) $layers_page_title_shown = FALSE;
// Fetch the site title array
$details = layers_get_page_title();
if( ! $layers_page_title_shown && ! empty( $details ) ) {
if( isset( $details[ 'title' ] ) || isset( $details[ 'excerpt' ] ) ) { ?>
<div <?php layers_wrapper_class( 'title_container', 'title-container' ); ?>>
<?php do_action('layers_before_header_page_title'); ?>
<div class="title">
<?php /**
* Display Breadcrumbs
*/
layers_bread_crumbs();
if( isset( $details[ 'title' ] ) && '' != $details[ 'title' ] ) { ?>
<?php do_action('layers_before_title_heading'); ?>
<h3 class="heading"><?php echo $details[ 'title' ]; ?></h3>
<?php do_action('layers_after_title_heading'); ?>
<?php } // if isset $title
if( isset( $details[ 'excerpt' ] ) && '' != $details[ 'excerpt' ] ) { ?>
<?php do_action('layers_before_title_excerpt'); ?>
<div class="excerpt"><?php echo $details[ 'excerpt' ]; ?></div>
<?php do_action('layers_after_title_excerpt'); ?>
<?php } // if isset $excerpt ?>
</div>
<?php do_action('layers_after_header_page_title'); ?>
</div>
<?php }
// Record that we have shown page title - to avoid double titles showing.
$layers_page_title_shown = TRUE;
}