HEX
Server: Apache
System: Linux server-674799.igrow.ws 5.14.0-611.30.1.el9_7.x86_64 #1 SMP PREEMPT_DYNAMIC Wed Feb 11 06:42:00 EST 2026 x86_64
User: elrashedytravel (1025)
PHP: 8.1.34
Disabled: exec,passthru,shell_exec,system
Upload Files
File: /home/elrashedytravel/www/wp-content/themes/bloglo/template-parts/header-page-title-single.php
<?php
/**
 * Template part for displaying page header for single post.
 *
 * @package Bloglo
 * @author Peregrine Themes
 * @since   1.0.0
 */

?>

<div <?php bloglo_page_header_classes(); ?><?php bloglo_page_header_atts(); ?>>

	<?php do_action( 'bloglo_page_header_start' ); ?>

	<?php if ( 'in-page-header' === bloglo_option( 'single_title_position' ) ) { ?>

		<div class="bloglo-container">
			<div class="bloglo-page-header-wrapper">

				<?php
				if ( bloglo_single_post_displays( 'category' ) ) {
					get_template_part( 'template-parts/entry/entry', 'category' );
				}

				if ( bloglo_page_header_has_title() ) {
					echo '<div class="bloglo-page-header-title">';
					bloglo_page_header_title();
					echo '</div>';
				}

				if ( bloglo_has_entry_meta_elements() ) {
					get_template_part( 'template-parts/entry/entry', 'meta' );
				}
				?>

			</div>
		</div>

	<?php } ?>

	<?php do_action( 'bloglo_page_header_end' ); ?>

</div>