File: /var/www/intranet.kauko.lt/wp-content/plugins/employee-directory/layouts/emd-single.php
<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
get_header('emdplugins');
$container = apply_filters('emd_change_container','emd-wrapper','empd_com', 'single');
$has_sidebar = apply_filters( 'emd_show_temp_sidebar', 'right', 'empd_com', 'single');
$uniq_id = str_replace("_","-",get_post_type($post));
?>
<div id="emd-temp-sing-<?php echo esc_attr($uniq_id); ?>-container" class="emd-temp-sing emd-container emd-wrap <?php echo esc_attr($has_sidebar) . ' ' . esc_attr($uniq_id); ?>">
<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 class="emd-full-width">
<?php
}
else {
?>
<div id="emd-primary-content">
<?php
}
while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php
//emd_get_template_part('empd-com', 'single', str_replace("_","-",$post->post_type));
echo apply_filters('the_content',$post->post_content);
?>
</div>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() ) {
comments_template( '', true );
}
?>
<?php $has_navigation = apply_filters( 'emd_show_temp_navigation', true, 'empd_com', 'single');
if($has_navigation){
global $wp_query;
$big = 999999999; // need an unlikely integer
?>
<nav role="navigation" id="emd-nav-below" class="site-navigation post-navigation nav-single">
<h3 class="assistive-text"><?php esc_html_e( 'Post navigation', 'empd-com' ); ?></h3>
<?php previous_post_link( '<div class="nav-previous">%link</div>', '<span class="meta-nav">' . _x( '<i class="fa fa-angle-left"></i>', 'Previous post link', 'empd-com' ) . '</span> %title' ); ?>
<?php next_post_link( '<div class="nav-next">%link</div>', '%title <span class="meta-nav">' . _x( '<i class="fa fa-angle-right"></i>', 'Next post link', 'empd-com' ) . '</span>' ); ?>
</nav>
<?php }
endwhile; // end of the loop.
$show_edit_link = apply_filters('emd_show_single_edit_link',true,'empd_com');
if($show_edit_link){
edit_post_link( esc_html__( 'Edit', 'empd-com' ) . ' <i class="fa fa-angle-right"></i>', '<div class="emd-edit-link" style="padding:20px 0;clear:both;text-align:left;">', '</div>' );
}
?>
</div>
<?php if($has_sidebar == 'right'){
?>
<?php
do_action( 'emd_sidebar', 'empd_com' );
?>
<?php
}
?>
</div>
</div>
</div>
<?php get_footer('emdplugins'); ?>