| Server IP : 34.87.99.72 / Your IP : 216.73.217.31 Web Server : Apache/2.4.46 (Unix) OpenSSL/1.1.1n System : Linux zlock-bitnami-lamp-prod-v2-vm 4.19.0-16-cloud-amd64 #1 SMP Debian 4.19.181-1 (2021-03-19) x86_64 User : bitnami ( 1000) PHP Version : 7.4.18 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /opt/bitnami/apache/htdocs/web/wp-content/themes/kalium/templates/global/ |
Upload File : |
<?php
/**
* Kalium WordPress Theme
*
* Page heading title and description
*
* @var string $heading_tag
* @var string $title
* @var string $description
*
* @author Laborator
* @version 3.1
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Direct access not allowed.
}
?>
<section class="page-heading" role="heading">
<div class="container">
<div class="row">
<?php
/**
* Before page heading title hooks
*/
do_action( 'page_heading_title_before' );
?>
<div class="page-heading__title-section page-heading--title-section section-title">
<?php if ( $title ) : ?>
<?php echo sprintf( '<%1$s class="page-heading__title page-heading--title">%2$s</%1$s>', $heading_tag, $title ); ?>
<?php endif; ?>
<?php if ( $description ) : ?>
<div class="page-heading__description page-heading--description">
<?php echo $description; ?>
</div>
<?php endif; ?>
</div>
<?php
/**
* After page heading title hooks
*/
do_action( 'page_heading_title_after' );
?>
</div>
</div>
</section>