HEX
Server: Apache
System: Linux host60.registrar-servers.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: wwwrenee (3804)
PHP: 8.0.30
Disabled: NONE
Upload Files
File: /home/wwwrenee/public_html/wp-content/themes/efor/layout-singular.php
<?php
	get_header();
?>

<?php
	if (is_singular('page'))
	{
		$efor_select_page_featured_area = get_option('efor_select_page_featured_area' . '__' . get_the_ID(), 'No Featured Area');
		
		if ((! isset($_GET['featured_area'])) && is_active_sidebar($efor_select_page_featured_area))
		{
			?>
				<section class="top-content">
					<div class="layout-medium">
						<div class="featured-area">
							<?php
								dynamic_sidebar($efor_select_page_featured_area);
							?>
						</div> <!-- .featured-area -->
					</div> <!-- .layout-medium -->
				</section> <!-- .top-content -->
			<?php
		}
	}
?>

<?php
	function efor_entry_header()
	{
		$title_visibility = get_option(get_the_ID() . 'efor_title_visibility', false);
		
		?>
			<header class="entry-header" <?php if ($title_visibility == true) { echo 'style="display: none;"'; } ?>>
				<?php
					if (is_singular('post'))
					{
						efor_meta('above_title');
					}
					
					the_title('<h1 class="entry-title">', '</h1>');
					
					if (is_singular('post'))
					{
						efor_meta('below_title');
					}
					
					efor_single_portfolio_meta();
				?>
			</header> <!-- .entry-header -->
		<?php
	}
?>

<?php
	function efor_featured_image($post_header_top, $parallax, $overlay)
	{
		if ($parallax)
		{
			?>
				<div class="post-thumbnail" style="background-image: url(<?php the_post_thumbnail_url('efor_image_size_2'); ?>);" data-medium-image="<?php the_post_thumbnail_url('efor_image_size_1'); ?>" data-large-image="<?php the_post_thumbnail_url('efor_image_size_7'); ?>">
					<div class="post-wrap">
						<?php
							if ($overlay)
							{
								efor_entry_header();
							}
						?>
						<span class="scrolldown"></span> <!-- .scrolldown -->
					</div> <!-- .post-wrap -->
				</div> <!-- .post-thumbnail -->
			<?php
		}
		else
		{
			if (has_post_thumbnail())
			{
				?>
					<div class="featured-image">
						<?php
							if (($post_header_top == 'is-top-content-single-medium') ||
								($post_header_top == 'is-top-content-single-full') ||
								($post_header_top == 'is-top-content-single-full-margins') ||
								($post_header_top == 'is-top-content-single-full-screen'))
							{
								the_post_thumbnail('efor_image_size_7');
							}
							else
							{
								the_post_thumbnail('efor_image_size_1');
							}
						?>
					</div> <!-- .featured-image -->
				<?php
			}
		}
	}
?>

<?php
	function efor_featured_video($browser_address_url, $parallax, $overlay)
	{
		if ($parallax)
		{
			?>
				<div class="post-thumbnail" data-parallax-video="<?php echo esc_url($browser_address_url); ?>">
					<div class="post-wrap">
						<?php
							if ($overlay)
							{
								efor_entry_header();
							}
						?>
						<span class="scrolldown"></span> <!-- .scrolldown -->
					</div> <!-- .post-wrap -->
				</div> <!-- .post-thumbnail -->
			<?php
		}
		else
		{
			echo efor_iframe_from_xml($browser_address_url);
		}
	}
?>

<?php
	function efor_featured_media($post_header_top, $post_header_inline, $featured_image_position, $where = "", $parallax, $overlay)
	{
		$browser_address_url = efor_core_featured_media__url();
		$browser_address_url = trim($browser_address_url); // Strip whitespace (or other characters) from the beginning and end of the string.
		
		if (($where == $featured_image_position) || ($post_header_inline == 'is-top-content-single-medium with-title-full'))
		{
			if (($post_header_inline == 'post-header-classic is-featured-image-left') ||
				($post_header_inline == 'post-header-classic is-featured-image-right')) // Force for Image Left and Image Right.
			{
				if (has_post_thumbnail())
				{
					efor_featured_image($post_header_top, $parallax, $overlay);
				}
				elseif (! empty($browser_address_url))
				{
					efor_featured_video($browser_address_url, $parallax, $overlay);
				}
			}
			elseif (! empty($browser_address_url))
			{
				efor_featured_video($browser_address_url, $parallax, $overlay);
			}
			else
			{
				efor_featured_image($post_header_top, $parallax, $overlay);
			}
		}
	}
?>

<?php
	function efor_post_header__content($post_header_top, $post_header_inline, $featured_image_position, $parallax, $overlay, $only_title, $only_media)
	{
		$post_header_inline_out = $post_header_inline;
		
		if (((($post_header_inline == 'post-header-classic is-featured-image-left') || ($post_header_inline == 'post-header-classic is-featured-image-right')) && (! has_post_thumbnail())) ||
			  ($post_header_inline == 'is-top-content-single-medium with-title-full')) // Force for: Image Left, Image Right and Title Full.
		{
			$post_header_inline_out = 'post-header-classic';
		}
		
		$category_link_style = efor_category_link_style();
		
		?>
			<div class="post-header <?php echo esc_attr($post_header_inline_out); ?> <?php echo esc_attr($category_link_style); ?>">
				<?php
					if ($parallax)
					{
						if ((! $overlay) && ($featured_image_position != 'above_title'))
						{
							efor_entry_header();
						}
						
						efor_featured_media(
							$post_header_top,
							$post_header_inline,
							$featured_image_position,
							$where = $featured_image_position,
							$parallax,
							$overlay
						);
					}
					else
					{
						if ($only_title)
						{
							efor_entry_header();
						}
						elseif ($only_media)
						{
							efor_featured_media(
								$post_header_top,
								$post_header_inline,
								$featured_image_position,
								$where = $featured_image_position,
								$parallax,
								$overlay
							);
						}
						else
						{
							if (($post_header_inline == 'post-header-classic is-featured-image-left') ||
								($post_header_inline == 'post-header-classic is-featured-image-right')) // Force for Image Left and Image Right.
							{
								efor_entry_header();
								efor_featured_media(
									$post_header_top,
									$post_header_inline,
									$featured_image_position,
									$where = $featured_image_position,
									$parallax,
									$overlay
								);
							}
							else
							{
								efor_featured_media(
									$post_header_top,
									$post_header_inline,
									$featured_image_position,
									$where = 'above_title',
									$parallax,
									$overlay
								);
								efor_entry_header();
								efor_featured_media(
									$post_header_top,
									$post_header_inline,
									$featured_image_position,
									$where = 'below_title',
									$parallax,
									$overlay
								);
							}
						}
					}
				?>
			</div> <!-- .post-header -->
		<?php
	}
?>

<?php
	function efor_post_header__inline($post_header_top, $post_header_inline, $featured_image_position, $parallax, $overlay, $only_title, $only_media)
	{
		efor_post_header__content(
			$post_header_top,
			$post_header_inline,
			$featured_image_position,
			$parallax,
			$overlay,
			$only_title,
			$only_media
		);
	}
?>

<?php
	function efor_post_header__top($post_header_top, $post_header_inline, $featured_image_position, $parallax, $overlay, $only_title, $only_media)
	{
		?>
			<section class="top-content-single <?php echo esc_attr($post_header_top); ?>">
				<div class="layout-medium">
					<?php
						efor_post_header__content(
							$post_header_top,
							$post_header_inline,
							$featured_image_position,
							$parallax,
							$overlay,
							$only_title,
							$only_media
						);
					?>
				</div> <!-- .layout-medium -->
			</section> <!-- .top-content-single -->
		<?php
	}
?>

<?php
	function efor_post_header__inline_chooser($post_style, $post_header_top, $featured_image_position, $only_title, $only_media)
	{
		switch ($post_style)
		{
			case 'post-header-classic':
			case 'post-header-classic is-featured-image-left':
			case 'post-header-classic is-featured-image-right':
			case 'is-top-content-single-medium with-title-full':
			
				efor_post_header__inline(
					$post_header_top,
					$post_header_inline = $post_style,
					$featured_image_position,
					$parallax = false,
					$overlay  = false,
					$only_title,
					$only_media
				); // POST STYLE: Classic, Image Left, Image Right, Title Full.
			
			break;
			
			case 'post-header-overlay post-header-overlay-inline is-post-dark':
			
				efor_post_header__inline(
					$post_header_top,
					$post_header_inline = $post_style,
					$featured_image_position,
					$parallax = true,
					$overlay  = true,
					$only_title,
					$only_media
				); // POST STYLE: Overlay.
			
			break;
		}
	}
?>

<?php
	function efor_post_header__top_chooser($post_style, $post_header_top, $featured_image_position, $only_title, $only_media)
	{
		switch ($post_style)
		{
			case 'is-top-content-single-medium':
			case 'is-top-content-single-full':
			case 'is-top-content-single-full-margins':
			case 'is-top-content-single-full-screen':
			case 'is-top-content-single-medium with-title-full':
			
				efor_post_header__top(
					$post_header_top = $post_style,
					$post_header_inline = 'post-header-classic',
					$featured_image_position,
					$parallax = false,
					$overlay = false,
					$only_title,
					$only_media
				); // POST STYLE: Classic Medium, Classic Full, Classic Full with Margins, Title Full.
			
			break;
			
			case 'is-top-content-single-medium with-parallax':
			case 'is-top-content-single-full with-parallax':
			case 'is-top-content-single-full-margins with-parallax':
			case 'is-top-content-single-full-screen with-parallax':
			
				efor_post_header__top(
					$post_header_top = $post_style,
					$post_header_inline = 'post-header-classic',
					$featured_image_position,
					$parallax = true,
					$overlay = false,
					$only_title,
					$only_media
				); // POST STYLE: Classic Medium Parallax, Classic Full Parallax, Classic Full with Margins Parallax.
			
			break;
			
			case 'is-top-content-single-medium with-overlay':
			case 'is-top-content-single-full with-overlay':
			case 'is-top-content-single-full-margins with-overlay':
			case 'is-top-content-single-full-screen with-overlay':
			
				efor_post_header__top(
					$post_header_top = $post_style,
					$post_header_inline = 'post-header-overlay is-post-dark',
					$featured_image_position,
					$parallax = true,
					$overlay = true,
					$only_title,
					$only_media
				); // POST STYLE: Overlay Medium, Overlay Full, Overlay Full with Margins.
			
			break;
		}
	}
?>

<?php
	function efor_post_header($post_header_top)
	{
		$featured_image_position = get_theme_mod('efor_setting_post_featured_image_position', 'below_title');
		$post_style = 'inherit'; // Default: Inherit from Customizer.
		$post_style = get_option('efor_post_style' . '__' . get_the_ID(), 'inherit'); // Get post style class. (edit screen)
		
		if ($post_style != 'used')
		{
			update_post_meta(get_the_ID(), 'pixelwars_core_post_style', $post_style);
			update_option('efor_post_style' . '__' . get_the_ID(), 'used');
		}
		
		$post_style = get_post_meta(get_the_ID(), 'pixelwars_core_post_style', true);
		
		if (($post_style == 'inherit') || ($post_style == null) || ($post_style == false))
		{
			if (is_singular('page'))
			{
				$post_style = get_theme_mod('efor_setting_page_style_global', 'post-header-classic'); // Get page style class. (customizer) --- PAGE
			}
			elseif (is_singular('post'))
			{
				$post_style = get_theme_mod('efor_setting_post_style_global', 'post-header-classic'); // Get post style class. (customizer) --- POST
			}
			else
			{
				$post_style = get_theme_mod('efor_setting_custom_post_style_global', 'post-header-classic'); // Get post style class. (customizer) --- CUSTOM POST TYPES
			}
		}
		
		$only_title = false; // Top header with just title w/ meta.
		$only_media = false; // Inline header with just featured image/video.
		
		if ($post_header_top && ($post_style == 'is-top-content-single-medium with-title-full')) // Title Full. (top header)
		{
			$only_title = true;
			$only_media = false;
			efor_post_header__top_chooser(
				$post_style,
				$post_header_top,
				$featured_image_position,
				$only_title,
				$only_media
			);
		}
		elseif ((! $post_header_top) && ($post_style == 'is-top-content-single-medium with-title-full')) // Title Full. (inline header)
		{
			$only_title = false;
			$only_media = true;
			efor_post_header__inline_chooser(
				$post_style,
				$post_header_top,
				$featured_image_position,
				$only_title,
				$only_media
			);
		}
		elseif ($post_style != 'is-top-content-single-medium with-title-full') // NOT "Title Full".
		{
			$browser_address_url = efor_core_featured_media__url();
			$browser_address_url = trim($browser_address_url); // Strip whitespace (or other characters) from the beginning and end of the string.
			
			if ((! $post_header_top) && empty($browser_address_url) && (! has_post_thumbnail())) // NO featured media.
			{
				efor_post_header__inline_chooser(
					$post_style = 'post-header-classic',
					$post_header_top,
					$featured_image_position,
					$only_title,
					$only_media
				); // Force for Classic style.
			}
			elseif ($post_header_top && ((! empty($browser_address_url)) || has_post_thumbnail()))
			{
				switch ($post_style)
				{
					case 'is-top-content-single-medium':
					case 'is-top-content-single-medium with-parallax':
					case 'is-top-content-single-full':
					case 'is-top-content-single-full with-parallax':
					case 'is-top-content-single-full-margins':
					case 'is-top-content-single-full-screen':
					case 'is-top-content-single-full-margins with-parallax':
					case 'is-top-content-single-full-screen with-parallax':
					
						if ($featured_image_position == 'above_title')  // Force for Classic style.
						{
							$only_media = true;
						}
					
					break;
				}
				
				efor_post_header__top_chooser(
					$post_style,
					$post_header_top,
					$featured_image_position,
					$only_title,
					$only_media
				);
			}
			elseif (! $post_header_top)
			{
				switch ($post_style)
				{
					case 'is-top-content-single-medium':
					case 'is-top-content-single-medium with-parallax':
					case 'is-top-content-single-full':
					case 'is-top-content-single-full with-parallax':
					case 'is-top-content-single-full-margins':
					case 'is-top-content-single-full-screen':
					case 'is-top-content-single-full-margins with-parallax':
					case 'is-top-content-single-full-screen with-parallax':
					
						if ($featured_image_position == 'above_title')  // Force for Classic style.
						{
							$only_title = true;
							$post_style = 'post-header-classic';
						}
					
					break;
				}
				
				efor_post_header__inline_chooser(
					$post_style,
					$post_header_top,
					$featured_image_position,
					$only_title,
					$only_media
				);
			}
		}
	}
?>

<?php
	while (have_posts()) : the_post();
?>

<?php
	efor_post_header($post_header_top = true); // Press top header.
?>

<div id="main" class="site-main">
	<div class="<?php efor_singular_sidebar($echo = 'class-layout'); ?>">
		<div id="primary" class="content-area <?php efor_singular_sidebar($echo = 'class-sidebar'); ?>">
			<div id="content" class="site-content" role="main">
				<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
					<div class="hentry-wrap">
						<?php
							efor_post_header($post_header_top = false); // Press inline header.
						?>
						<div class="entry-content">
							<?php
								efor_portfolio_item__format_chooser();
								efor_content();
							?>
						</div> <!-- .entry-content -->
					</div> <!-- .hentry-wrap -->
					<?php
						if (is_singular('post'))
						{
							efor_post_tags();
							efor_meta('below_content');
							efor_share_links();
						}
						
						if (is_singular('post') || is_singular('portfolio'))
						{
							efor_single_navigation();
						}
						
						if (is_singular('post'))
						{
							efor_about_author();
							efor_core_related_posts();
						}
					?>
				</article> <!-- .post -->
				<?php
					comments_template("", true);
				?>
			</div> <!-- #content .site-content -->
		</div> <!-- #primary .content-area -->
<?php
	endwhile;
?>

		<?php
			efor_singular_sidebar($echo = 'html-sidebar');
		?>
	</div> <!-- layout -->
</div> <!-- #main .site-main -->

<?php
	get_footer();
?>