HEX
Server: Apache
System: Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux
User: u41188965 (3074900)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /homepages/16/d176908298/htdocs/dev/wdev/wp-content/themes/travel-blogger/category.php
<?php
/**
 * The template for displaying Category Archive pages.
 *
 * @package WordPress
 * @subpackage TravelBlogger
 * @since TravelBlogger Theme 1.0
 */



get_header(); ?>

	<div id="yui-main">
	   <div class="yui-b">
			<div class="archive-meta rounded">
				<h1 class="page-title"><?php printf( __( '%s', 'travelblogger' ), '<span>' . single_cat_title( '', false ) . '</span>' ); ?></h1>
				<?php 
					$category_description = category_description();
					if ( ! empty( $category_description ) )
						echo $category_description;
				?>
			</div>
			 <div id="content" class="main-content hfeed list rounded">
					<?php
	
					/* Run the loop for the category page to output the posts.
					 * If you want to overload this in a child theme then include a file
					 * called loop-category.php and that will be used instead.
					 */
					get_template_part( 'loop', 'category' );
					?>
	
			</div><!-- /.main-content -->
			<?php get_sidebar('secondary'); ?>
	   </div><!--yui-b-main-->
	</div><!--yui-main-->

<?php get_sidebar(); ?>
<?php get_footer(); ?>