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/www.colombia.co/public_html/wp-content/themes/colombia2016-old/single.php
<?php get_header(); ?>

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

	$cat = get_the_category();
	$cat_id = $cat[0]->term_id;
	$images = get_option('taxonomy_image_plugin'); // get the taxonomy images array
	if( array_key_exists( $cat_id, $images ) ) { // check if term has an image
        $category_image = wp_get_attachment_image_src( $images[$cat_id], 'full' ); // if it does, echo that image
    }
    $category_color = get_term_meta( $cat_id , 'category_color', true );

    $url_exploded = explode('/', parse_url(get_the_permalink(), PHP_URL_PATH));
    $parent_category = 'category-'.$url_exploded[1];
?>

<?php if(($category_image)||($category_color)): ?>
<style>
	<?php if($category_image): ?>
		#post-header {
			background-image: url(<?php echo $category_image[0]; ?>);
			background-size: cover;
		}
			<?php if($category_color): ?>
			#post-content .post-content > p:first-of-type::first-letter {
				color: <?php echo $category_color; ?>;
			}
			#post-content .post-content blockquote {
				color: <?php echo $category_color; ?>;
			}
			#sidebar .related-posts .related-posts-title {
				border-bottom-color: <?php echo $category_color; ?>;
			}
		<?php endif; ?>
	<?php endif; ?>
</style>
<?php endif; ?>

<main role="main" class="l-flex <?php echo $parent_category ?>">
	<div id="post-header">
		<div class="l-container l-flex">
			<div class="post-header-container">
				<?php echo do_shortcode('[breadcrumb]'); ?>
				<h1 class="post-title"><?php the_title(); ?></h1> 
			</div>
		</div>
	</div>
	<div id="content-wrapper" class="l-container l-flex">
		<section id="post-content">
			<article <?php post_class('l-flex'); ?> id="post-<?php the_ID(); ?>">
				<?php
					$gallery = get_field('gallery_post');
					$n = count($gallery);
					if($gallery){
						if($n > 1){
				?>
				<div id="post-slider" class="swiper-container">
					<div class="swiper-wrapper">
				<?php
							foreach($gallery as $img){
								$url = $img["image_gallery_post"]['url'];
								$alt = $img["image_gallery_post"]['alt'];
								$title = $img["image_gallery_post"]['title'];
								$width = $img["image_gallery_post"]['width'];
								$height = $img["image_gallery_post"]['height'];
								if($width > $height){
				?>
						<div class="swiper-slide">
							<figure class="slide">
								<img class="slide-img" src="<?php echo $url; ?>" alt="<?php echo $alt; ?>" title="<?php echo $title; ?>" />
							</figure>
						</div>
				<?php
								}
							}
				?>
					</div>
					<div class="swiper-pagination"></div>
					<div class="swiper-button-prev"><i class="icon-arrow-left"></i></div>
	    			<div class="swiper-button-next"><i class="icon-arrow-right"></i></div>
				</div>
				<?php if(get_field('image_credit')): ?>
					<div class="img-credits"><?php the_field('image_credit') ?></div>
				<?php endif; ?>
				<?php
						}
						else{
							$url = $gallery[0]["image_gallery_post"]['url'];
							$alt = $gallery[0]["image_gallery_post"]['alt'];
							$title = $gallery[0]["image_gallery_post"]['title'];
							$width = $gallery[0]["image_gallery_post"]['width'];
							$height = $gallery[0]["image_gallery_post"]['height'];
							if($width > $height){
				?>
					<figure class="post-img">
						<img class="slide-img" src="<?php echo $url; ?>" alt="<?php echo $alt; ?>" title="<?php echo $title; ?>" />
						<?php if(get_field('image_credit')): ?>
							<figcaption class="img-credits"><?php the_field('image_credit') ?></figcaption>
						<?php endif; ?>
					</figure>
				<?php
							}
						}
					}
					elseif(has_post_thumbnail()){
						if(has_post_video()){
				?>
				<figure class="post-img">
					<?php the_post_thumbnail(); ?>
					<?php if(get_field('image_credit')): ?>
						<figcaption class="img-credits"><?php the_field('image_credit') ?></figcaption>
					<?php endif; ?>
				</figure>
				<?php
						}
						else{
							$image = wp_get_attachment_image_src(get_post_thumbnail_id($post->id), 'post-thumbnail');
							if(($image[1] > 600) && ($image[1] > $image[2])):
				?>
				<figure class="post-img">
					<?php the_post_thumbnail(); ?>
					<?php if(get_field('image_credit')): ?>
						<figcaption class="img-credits"><?php the_field('image_credit') ?></figcaption>
					<?php endif; ?>
				</figure>
				<?php
							endif;
						}
					}
				?>
				<div class="post-sharing">
					<?php echo do_shortcode('[wp_social_sharing social_options="facebook, twitter,linkedin,googleplus" facebook_text="" twitter_text="" googleplus_text="" linkedin_text="" icon_order="f,t,l,g"]'); ?>
				</div>
				<div class="post-data">
					<span class="post-author"><?php the_author(); ?></span>-<span class="post-date"><?php the_date(); ?></span>
				</div>
				<h2 class="post-excerpt">
					<?php echo get_the_excerpt(); ?>
				</h2>
				<div class="post-content">
					<?php the_content(); ?>
				</div>
				<div class="post-tags">
					<?php the_tags('', ''); ?>
				</div>
				<div class="post-sharing post-sharing-after">
					<?php echo do_shortcode('[wp_social_sharing social_options="facebook, twitter,linkedin,googleplus" facebook_text="" twitter_text="" googleplus_text="" linkedin_text="" icon_order="f,t,l,g"]'); ?>
				</div>
			</article>
			<?php endwhile; ?>
		</section>
		<?php get_sidebar(); ?>
	</div>
</main>

<?php get_footer(); ?>