HEX
Server: Apache/2.4.34 (Red Hat) OpenSSL/1.0.2k-fips
System: Linux WORDPRESS 3.10.0-1160.118.1.el7.x86_64 #1 SMP Thu Apr 4 03:33:23 EDT 2024 x86_64
User: digital (1020)
PHP: 7.2.24
Disabled: NONE
Upload Files
File: /datos/www/expodubai/wp-content/themes/osapaOld/template-parts/post/content.php
<?php 
global $post, $wp_query, $smof_data;
$post_format = get_post_format(); /* Video, Audio, Gallery, Quote */
$post_class = 'post-item hentry ';
$show_blog_thumbnail = $smof_data['ftc_blog_thumbnail'];
?>
<article <?php post_class($post_class) ?>>

	<?php if( $post_format != 'quote' ): ?>
		<div class="post-img">
			<header class="post-img">
				<?php 

				if( $show_blog_thumbnail ){

					if( $post_format == 'gallery' || $post_format === false || $post_format == 'standard' ){
						?>
						<a class="blog-image <?php echo esc_attr($post_format); ?> <?php echo esc_attr(($post_format == 'gallery')?'loading owl-carousel':'' ) ; ?>" href="<?php the_permalink() ?>">
							<?php 
							if( $post_format == 'gallery' ){
								$gallery = get_post_meta($post->ID, 'ftc_gallery', true);
								$gallery_ids = explode(',', $gallery);
								if( is_array($gallery_ids) && has_post_thumbnail() ){
									array_unshift($gallery_ids, get_post_thumbnail_id());
								}
								foreach( $gallery_ids as $gallery_id ){
									echo wp_get_attachment_image( $gallery_id, 'ftc_blog_thumb', 0, array('class' => 'thumbnail-blog') );
								}
								
								if( !has_post_thumbnail() && empty($gallery) ){ /* Fix date position */
									$show_blog_thumbnail = 0;
								}
							}

							if( $post_format === false || $post_format == 'standard' ){
								if( has_post_thumbnail() ){
									the_post_thumbnail('ftc_blog_thumb', array('class' => 'thumbnail-blog'));
								}
								else{ /* Fix date position */
									$show_blog_thumbnail = 0;
								}
							}
							?>
						</a>
						<?php
					}

					if( $post_format == 'video' ){
						$video_url = get_post_meta($post->ID, 'ftc_video_url', true);
						if( $video_url != '' ){
							print_r(do_shortcode('[ftc_video src="'.esc_url($video_url).'"]')) ;
						}
					}

					if( $post_format == 'audio' ){
						$audio_url = get_post_meta($post->ID, 'ftc_audio_url', true);
						if( strlen($audio_url) > 4 ){
							$file_format = substr($audio_url, -3, 3);
							if( in_array($file_format, array('mp3', 'ogg', 'wav')) ){
								print_r(do_shortcode('[audio '.$file_format.'="'.$audio_url.'"]')) ;
							}
							else{
								print_r(do_shortcode('[ftc_soundcloud url="'.$audio_url.'" width="100%" height="166"]')) ;
							}
						}
					}
				}
				?>
				<!-- Blog Date -->
				<?php if( isset($smof_data['ftc_blog_date']) && $smof_data['ftc_blog_date'] && $show_blog_thumbnail && ( $post_format == 'gallery' || $post_format === false || $post_format == 'standard' ) ): ?>
				<div class="date-time">
					<span><?php echo get_the_time('d'); ?></span>
					<span><?php echo get_the_time('M'); ?></span>
				</div>
			<?php endif; ?>

		</header>
	</div>
	<div class="cate-img">
		<?php
		$categories_list = get_the_category_list(' ');
		if (($categories_list && isset($smof_data['ftc_blog_categories']) && $smof_data['ftc_blog_categories']) || isset($smof_data['ftc_blog_author']) && $smof_data['ftc_blog_author']):
			?>
		<!-- Blog Categories -->
		<?php if ( $categories_list && isset($smof_data['ftc_blog_categories']) && $smof_data['ftc_blog_categories'] ): ?>
			<div class="caftc-link">
				<span class="cat-links"><?php echo trim($categories_list); ?></span>
			</div>
		<?php endif; ?>
	<?php endif; ?>

</div>
<div class="post-info">
	<div class="entry-info">
		<!-- Blog Title -->
		<?php if( isset($smof_data['ftc_blog_title']) &&  $smof_data['ftc_blog_title'] ): ?>
			<h3 class="product_title entry-title">
				<a class="post-title product_title" href="<?php the_permalink() ; ?>"><?php the_title(); ?></a>
			<?php endif; ?>
			<?php if ( is_sticky() && is_home() && ! is_paged() ): {
				printf( '<span class="sticky-post">%s</span>', esc_html__( 'Featured', 'osapa' ) );
			}?>

		<?php endif; ?>
	</h3>

	<?php 
	$categories_list = get_the_category_list(', ');
	if ( ($categories_list &&  isset($smof_data['ftc_blog_categories']) && $smof_data['ftc_blog_categories'] ) || isset($smof_data['ftc_blog_author']) && $smof_data['ftc_blog_author'] ): 
		?>
		<!-- Blog Date Time -->
		<span class="date-time">
			<i class="fa fa-clock-o"></i>
			<?php echo get_the_time(get_option('date_format')); ?>
		</span>
		<!-- Blog Author -->
		<?php if( isset($smof_data['ftc_blog_author']) && $smof_data['ftc_blog_author'] ): ?>
			<span class="vcard author"><?php esc_html_e('Posted by: ', 'osapa'); ?><?php the_author_posts_link(); ?></span>
		<?php endif; ?>

		<!-- Blog Categories -->
		<?php if ( $categories_list && isset($smof_data['ftc_blog_categories']) && $smof_data['ftc_blog_categories'] ): ?>
			<div class="caftc-link">
				<span><?php esc_html_e('Categories: ', 'osapa'); ?></span>
				<span class="cat-links"><?php echo trim($categories_list); ?></span>
			</div>        
		<?php endif; ?>

		<!-- Blog Tags -->
		<?php   
		$tags_list = get_the_tag_list('', ' '); 
		if ( $tags_list &&  isset($smof_data['ftc_blog_details_tags']) && $smof_data['ftc_blog_details_tags'] ):?>
			<span class="tags-link">
				<span><?php esc_html_e('Tags: ','osapa');?></span>
				<span class="tag-links">
					<?php echo trim($tags_list); ?>
				</span>
			</span>
		<?php endif; ?> 

		<!-- Blog View -->
		<?php if( isset($smof_data['ftc_blog_count_view']) && $smof_data['ftc_blog_count_view'] ): ?>
			<span class="count-view">
				<?php esc_html_e('View: ','osapa');?>
				<?php echo get_post_views(get_the_ID()); ?>
			</span>
		<?php endif; ?>

	</div>
<?php endif; ?>

<!-- Blog Date Time -->
<?php if( isset($smof_data['ftc_blog_date']) && $smof_data['ftc_blog_date'] && ( !$show_blog_thumbnail || ( $post_format != 'gallery' && $post_format !== false && $post_format != 'standard' ) ) ) : ?>
	<div class="date-time date-time-meta">
		<i class="fa fa-clock-o"></i> <?php echo get_the_time(get_option('date_format')); ?>
	</div>
<?php endif; ?>

<div class="entry-summary">
	<?php if( isset($smof_data['ftc_blog_excerpt']) && $smof_data['ftc_blog_excerpt'] ): ?>
		<div class="full-content">
			<?php 
			$max_words = (int)$smof_data['ftc_blog_excerpt_max_words']?(int)$smof_data['ftc_blog_excerpt_max_words']:125;
			$strip_tags = $smof_data['ftc_blog_excerpt_strip_tags']?true:false;
			osapa_the_excerpt_max_words($max_words, $post, $strip_tags, '', true); 
			?>
		</div>
	<?php endif; ?>
	<!-- Blog Read More Button -->
	<?php if( isset($smof_data['ftc_blog_read_more']) && $smof_data['ftc_blog_read_more'] ): ?>
		<a class="button-readmore" href="<?php the_permalink() ; ?>"><?php esc_html_e('Read More', 'osapa'); ?></a>
	<?php endif; ?>
</div>
</div>
<?php else: /* Post format is quote */ ?>
	
	<blockquote class="blockquote-bg">
		<?php 
		$quote_content = get_the_excerpt();
		if( !$quote_content ){
			$quote_content = get_the_content();
		}
		print_r(do_shortcode($quote_content));
		?>
		<!-- Blog Author -->
		<?php if ( isset($smof_data['ftc_blog_details_author_box']) && $smof_data['ftc_blog_details_author_box']): ?>
			<span class="vcard author">by <?php the_author_posts_link(); ?></span>
		<?php endif; ?>
		<div class="cate-img">

			<?php
			$categories_list = get_the_category_list(' ');
			if (($categories_list && isset($smof_data['ftc_blog_categories']) && $smof_data['ftc_blog_categories'] ) || isset($smof_data['ftc_blog_author']) && $smof_data['ftc_blog_author']):
				?>
				<!-- Blog Categories -->
				<?php if ( $categories_list && isset($smof_data['ftc_blog_categories']) && $smof_data['ftc_blog_categories'] ): ?>
					<div class="caftc-link">
						<span class="cat-links"><?php echo trim($categories_list); ?></span>
					</div>
				<?php endif; ?>
			<?php endif; ?>
		</div>
	</blockquote>


	<div class="blockquote-meta">
		<div class="post-info">
			<div class="entry-info">
				<!-- Blog Title -->
				<?php if( isset($smof_data['ftc_blog_title']) && $smof_data['ftc_blog_title'] ): ?>
					<h3 class="product_title entry-title">
						<a class="post-title product_title" href="<?php the_permalink() ; ?>"><?php the_title(); ?></a>
					<?php endif; ?>
					<?php if ( is_sticky() && is_home() && ! is_paged() ): {
						printf( '<span class="sticky-post">%s</span>', __( 'Featured', 'osapa' ) );
					}?>

				<?php endif; ?>
			</h3>
			<!-- Blog Date Time -->

			<span class="date-time">
				<i class="fa fa-clock-o"></i>
				<?php echo get_the_time(get_option('date_format')); ?>
			</span>


			<!-- Blog Author -->
			<?php if( isset($smof_data['ftc_blog_author']) && $smof_data['ftc_blog_author'] ): ?>
				<span class="vcard author"><?php esc_html_e('Posted by: ', 'osapa'); ?><?php the_author_posts_link(); ?></span>
			<?php endif; ?>

			<!-- Blog Tags -->
			<?php   
			$tags_list = get_the_tag_list('', ' '); 
			if ( $tags_list && isset($smof_data['ftc_blog_details_tags']) && $smof_data['ftc_blog_details_tags'] ):?>
				<span class="tags-link">
					<span><?php esc_html_e('Tags: ','osapa');?></span>
					<span class="tag-links">
						<?php echo trim($tags_list); ?>
					</span>
				</span>
			<?php endif; ?> 

			<!-- Blog View -->
			<?php if( isset($smof_data['ftc_blog_count_view']) && $smof_data['ftc_blog_count_view'] ): ?>
				<span class="count-view">
					<?php esc_html_e('View: ','osapa');?>
					<span><?php echo get_post_views(get_the_ID()); ?></span>				
				</span>
			<?php endif; ?>

		</div>
		<div class="entry-summary">
			<div class="full-content"><?php the_content(); ?></div>
		</div>
		<!-- Blog Read More Button -->
		<?php if( isset($smof_data['ftc_blog_read_more']) && $smof_data['ftc_blog_read_more'] ): ?>
			<a class="button-readmore" href="<?php the_permalink() ; ?>"><?php esc_html_e('Read More', 'osapa'); ?></a>
		<?php endif; ?>

	</div>
</div>

<?php endif; ?>

</article>