HEX
Server: Apache
System: Linux iad1-shared-e1-26 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
User: ricpug (13815490)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: /home/ricpug/tecnomarketconsult.co_202106170822/wp-content/themes/ananke/taxonomy-categories.php
<?php 
/*
 *  The template for displaying Category pages
 */
get_header();?>
<!--Portfolio section-->
<section id="portfolio" class="tCenter ofsTop ofsBottom">
	<!--Container-->
	<div class="container clearfix">
		<h1 class="title tCenter"><?php printf( __( 'Portfolio %s', 'ananke' ), single_cat_title( '', false ) ); ?></h1>
	</div>
	<!--End container-->
		
	<!-- Works list -->
	<div class=" works clearfix ">
		<!--Portfolio-->
		<ul class="portfolio clearfix">
			<?php while (have_posts()) : the_post(); ?>		
			<li class="item">
				<div class="itemDesc">
					<div class="itemDescInner">
					<h3><?php the_title();?><span><?php printf( '%s', single_cat_title( '', false ) ); ?></span></h3>
					<div class="doubleBtn itemBtn ">
						<a href="<?php echo esc_url(wp_get_attachment_url( get_post_thumbnail_id()));?>" class="doubleLeft folio"><i class="icon-eye"></i></a>
						<a href="<?php the_permalink(); ?>" class="doubleRight"><i class="icon-link"></i></a>
					</div>
					</div>
				</div>
				<?php $params = array( 'width' => 900, 'height' => 700 );
				  $image = bfi_thumb( wp_get_attachment_url(get_post_thumbnail_id()), $params ); ?>
				<img width="900" height="700" src="<?php echo esc_url($image); ?>" alt="<?php the_title(); ?>" >
			</li>
			<?php endwhile;?>
		</ul>
		<!--End portfolio-->
	</div>
	<!-- End works list -->
</section>
<!--End portfolio section-->
<?php get_footer();?>