| Server IP : 217.160.0.15 / Your IP : 216.73.217.84 Web Server : Apache System : Linux info 3.0 #1337 SMP Tue Jan 01 00:00:00 CEST 2000 all GNU/Linux User : u37981780 ( 1696858) PHP Version : 8.2.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /homepages/43/d124547881/htdocs/app395378437/wp-content/themes/portfolio-press/ |
Upload File : |
<?php
/**
* The template for displaying archive pages
*
* @package Portfolio Press
*/
get_header(); ?>
<div id="primary">
<div id="content" role="main">
<?php if ( is_tax() || is_category() || is_tag() ) :
if ( portfoliopress_get_option( 'archive_titles', true ) ) : ?>
<header class="archive-header">
<h1 class="archive-title"><?php echo single_term_title( '', false ); ?></h1>
<?php $description = term_description();
if ( ! empty( $description ) ) {
echo apply_filters( 'archive_meta', '<div class="archive-meta">' . $description . '</div>' );
} ?>
</header>
<?php endif;
endif;
?>
<?php if ( have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( 'content', get_post_format() ); ?>
<?php endwhile; ?>
<?php portfoliopress_paging_nav(); ?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
</div><!-- #content -->
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>