Your IP : 216.73.216.48
<?php
/**
* Template for page view including query categories
* @package themify
* @since 1.0.0
*/
?>
<?php get_header(); ?>
<?php
/** Themify Default Variables
* @var object */
global $themify; ?>
<!-- layout-container -->
<div id="layout" class="pagewidth clearfix">
<?php themify_content_before(); // hook ?>
<!-- content -->
<div id="content" class="clearfix">
<?php themify_content_start(); // hook ?>
<?php
/////////////////////////////////////////////
// 404
/////////////////////////////////////////////
if(is_404()): ?>
<h1 class="page-title"><?php _e('404','themify'); ?></h1>
<p><?php _e( 'Page not found.', 'themify' ); ?></p>
<?php if( current_user_can('administrator') ): ?>
<p><?php _e( '@admin Learn how to create a <a href="https://themify.me/docs/custom-404" target="_blank">custom 404 page</a>.', 'themify' ); ?></p>
<?php endif; ?>
<?php endif; ?>
<?php
/////////////////////////////////////////////
// PAGE
/////////////////////////////////////////////
?>
<?php if ( ! is_404() && have_posts() ) : while ( have_posts() ) : the_post(); ?>
<div id="page-<?php the_ID(); ?>" class="type-page">
<!-- page-title -->
<?php if($themify->page_title != "yes"): ?>
<time datetime="<?php the_time( 'o-m-d' ); ?>"></time>
<?php themify_theme_page_title(); ?>
<?php endif; ?>
<!-- /page-title -->
<div class="page-content entry-content">
<?php if ( $themify->hide_page_image != 'yes' && has_post_thumbnail() ) : ?>
<figure class="post-image"><?php themify_image( "{$themify->auto_featured_image}w={$themify->image_page_single_width}&h={$themify->image_page_single_height}&ignore=true" ); ?></figure>
<?php endif; ?>
<?php the_content(); ?>
<?php wp_link_pages(array('before' => '<p class="post-pagination"><strong>'.__('Pages:','themify').'</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
<?php edit_post_link(__('Edit','themify'), '[', ']'); ?>
<!-- comments -->
<?php if(!themify_check('setting-comments_pages') && $themify->query_category == ""): ?>
<?php comments_template(); ?>
<?php endif; ?>
<!-- /comments -->
</div>
<!-- /.post-content -->
</div><!-- /.type-page -->
<?php endwhile; endif; ?>
<?php
/////////////////////////////////////////////
// Query Category
/////////////////////////////////////////////
?>
<?php if($themify->query_category != ''): ?>
<?php
// Categories for Query Posts or Portfolios
$categories = '0' == $themify->query_category ? themify_get_all_terms_ids( $themify->query_taxonomy ) : explode(',', str_replace(' ', '', $themify->query_category));
$qpargs = array(
'post_type' => $themify->query_post_type,
'tax_query' => array(
array(
'taxonomy' => $themify->query_taxonomy,
'field' => 'id',
'terms' => $categories
)
),
'posts_per_page' => $themify->posts_per_page,
'paged' => $themify->paged,
'order' => $themify->order,
'orderby' => $themify->orderby
);
?>
<?php
query_posts(apply_filters('themify_query_posts_page_args', $qpargs)); ?>
<?php if(have_posts()): ?>
<?php
/////////////////////////////////////////////
// Entry Filter
/////////////////////////////////////////////
if ( in_array( $themify->query_post_type, array( 'post', 'portfolio' ) ) && ( count( $categories ) >= 1 ) && 'slider' !== $themify->post_layout && (!isset($themify->post_filter) || $themify->post_filter=='yes')) : ?>
<?php get_template_part( 'includes/filter', 'portfolio' ); ?>
<?php endif; // portfolio query ?>
<!-- loops-wrapper -->
<div id="loops-wrapper" class="loops-wrapper <?php echo esc_attr( themify_theme_query_classes() ); ?>">
<?php while( have_posts() ) : the_post(); ?>
<?php get_template_part( 'includes/loop', $themify->query_post_type ); ?>
<?php endwhile; ?>
</div>
<!-- /loops-wrapper -->
<?php if ( themify_is_query_page() ) : ?>
<?php if ( $themify->page_navigation != 'yes' ): ?>
<?php get_template_part( 'includes/pagination' ); ?>
<?php endif; // show page navigation ?>
<?php endif; // is query page ?>
<?php endif; // have_posts() ?>
<?php wp_reset_query(); ?>
<?php endif; // is query page ?>
<?php themify_content_end(); // hook ?>
</div>
<!-- /content -->
<?php themify_content_after(); // hook ?>
<?php
/////////////////////////////////////////////
// Sidebar
/////////////////////////////////////////////
if ($themify->layout != 'sidebar-none'): get_sidebar(); endif; ?>
</div>
<!-- /layout-container -->
<?php get_footer(); ?>