HEX
Server: Apache
System: Linux p3plzcpnl504740.prod.phx3.secureserver.net 4.18.0-553.141.2.lve.el8.x86_64 #1 SMP Wed Jul 8 16:10:02 UTC 2026 x86_64
User: l2pbkn5l6xav (4972877)
PHP: 7.2.34
Disabled: NONE
Upload Files
File: /home/l2pbkn5l6xav/public_html/wp-content/themes/bizberg/template-parts/content-detail.php
<div class="detail-content single_page">

	<?php 
	if( has_post_thumbnail() ){

		echo '<div class="detail_image_wrapper">';
		
		$post_cat =  bizberg_post_categories( $post , 1 , true , false );
		if( $post_cat != false ){
			echo '<div class="bizberg_detail_cat">';
			echo wp_kses_post( $post_cat );
			echo '</div>';
		}	

		the_post_thumbnail( 'bizberg_detail_image' );
		echo '</div>';

	} ?>

	<div class="bizberg_cocntent_wrapper">

		<div class="bizberg_post_date">
			<a href="<?php echo esc_url( home_url() ); ?>/<?php echo esc_attr( date( 'Y/m' , strtotime( get_the_date() ) ) ); ?>">
				<?php echo esc_html( get_the_date() ); ?>
			</a> 
		</div>

		<h3 class="blog-title"><?php the_title(); ?></h3>

		<?php

		do_action( 'bizberg_before_single_content' , $post );

		the_content();

		do_action( 'bizberg_after_single_content' , $post ); ?>

		<div class="bizberg_user_comment_wrapper">
			
			<div class="bizberg_detail_user_wrapper">			
				<a href="<?php echo esc_url( get_author_posts_url( $post->post_author ) ); ?>"> 
					<i class="fa fa-user"></i> 
					<?php echo esc_html( bizberg_get_display_name( $post ) ); ?>		
				</a> 
			</div>

			<div class="bizberg_detail_comment_count">
				<i class="fas fa-comments"></i>
				<?php echo absint( get_comments_number() ); ?>
			</div>

		</div>

	</div>

	<?php

	if( has_tag() ){
		echo '<div class="tag-cloud-wrapper clearfix mb-40">
			<div class="tag-cloud-heading">' . esc_html__( 'Tags :' , 'bizberg' ) . ' </div>
			<div class="tagcloud tags clearfix mt-5">';
			the_tags('','','');
			echo '</div>
		</div>';
	} ?>

	<?php 
	if( !is_attachment() ){  ?>

		<div class="blog-author">
			<div class="col-sm-3 blog-author-left col-xs-3">
				<?php 
				echo get_avatar( $post->post_author , 250 ); ?>
			</div>
			<div class="col-sm-9 blog-author-right col-xs-9">
				<h4>
					<a href="<?php echo esc_url( get_author_posts_url( $post->post_author ) ); ?>">
						<?php 
						echo '<span class="bizberg_author_label">';
						esc_html_e( 'Author : ' , 'bizberg' );
						echo '</span>';
						bizberg_get_display_name( $post );
						?>
					</a>
				</h4>
				<p><?php 
					$user_data = get_user_meta( $post->post_author );
					echo esc_html( $user_data['description'][0] );
					?>
				</p>
			</div>				
		</div>

		<?php 

	} ?>
	
</div>