File: /var/www/intranet.kauko.lt/wp-content/plugins/employee-directory/layouts/emd-archive.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
get_header('emdplugins');
$container = apply_filters('emd_change_container','emd-wrapper','empd_com', 'archive');
$has_sidebar = apply_filters( 'emd_show_temp_sidebar', 'right', 'empd_com', 'archive');
$uniq_id = str_replace("_","-",get_post_type($post));
?>
<div id="emd-temp-archive-<?php echo esc_attr($uniq_id); ?>-container" class="emd-container emd-wrap <?php echo esc_attr($has_sidebar) . ' ' . esc_attr($uniq_id); ?> emd-temp-archive">
<div class="<?php echo esc_attr($container); ?>">
<div id="emd-primary" class="emd-site-content emd-row">
<?php
if($has_sidebar == 'left'){
do_action( 'emd_sidebar', 'empd_com' );
}
if($has_sidebar == 'full'){
?>
<div id="emd-primary-content" class="emd-full-width">
<?php
}
else {
?>
<div id="emd-primary-content">
<?php
}
?>
<div id="emd-primary-content-header">
<?php
do_action('emd_archive_before_header', 'empd-com',$post->post_type);
emd_get_template_part('empd-com', 'archive', str_replace("_","-",$post->post_type) . '-aheader');
do_action('emd_archive_after_header', 'empd-com',$post->post_type);
?>
</div>
<div id="emd-primary-content-body">
<?php
while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" style="padding:10px;" <?php post_class(); ?>>
<?php emd_get_template_part('empd-com', 'archive', str_replace("_","-",$post->post_type)); ?>
</div>
<?php endwhile; // end of the loop. ?>
<?php if(!have_posts()){
echo "<div class='emd-arc-tax-no-records'><div class='emd-arc-tax-no-records-txt'>" . esc_html__('No archive records have been found.','empd-com') . "</div></div>";
}
?>
</div>
<div id="emd-primary-content-footer">
<?php
do_action('emd_archive_before_footer', 'empd-com',$post->post_type);
emd_get_template_part('empd-com', 'archive', str_replace("_","-",$post->post_type) . '-afooter');
do_action('emd_archive_after_footer', 'empd-com',$post->post_type);
?>
</div>
<?php $has_navigation = apply_filters( 'emd_show_temp_navigation', true, 'empd_com', 'archive');
if($has_navigation){
global $wp_query;
$big = 999999999; // need an unlikely integer
?>
<nav role="navigation" id="nav-below" class="emd-navigation">
<h3 class="assistive-text"><?php esc_html_e( 'Post navigation', 'empd-com' ); ?></h3>
<?php if ( $wp_query->max_num_pages > 1 ) { ?>
<?php $pages = paginate_links( array(
'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ),
'format' => '?paged=%#%',
'current' => max( 1, get_query_var( 'paged' ) ),
'total' => $wp_query->max_num_pages,
'type' => 'array',
'prev_text' => wp_kses( __( '<i class="fa fa-angle-left"></i> Previous', 'empd-com' ), array( 'i' => array(
'class' => array() ) ) ),
'next_text' => wp_kses( __( 'Next <i class="fa fa-angle-right"></i>', 'empd-com' ), array( 'i' => array(
'class' => array() ) ) )
) );
if(is_array($pages)){
$paged = ( get_query_var('paged') == 0 ) ? 1 : get_query_var('paged');
echo '<div class="pagination-wrap"><ul class="pagination">';
foreach ( $pages as $page ) {
$paging_html = "<li";
if(strpos($page,'page-numbers current') !== false){
$paging_html.= " class='active'";
}
$paging_html.= ">" . $page . "</li>";
echo wp_kses_post($paging_html);
}
echo '</ul></div>';
}
} ?>
</nav>
<?php }
?>
</div>
<?php if($has_sidebar == 'right'){
?>
<?php
do_action( 'emd_sidebar', 'empd_com' );
?>
<?php
}
?>
</div>
</div>
</div>
<?php get_footer('emdplugins'); ?>