File: /home/cafsindia/orthovijay.in/wp-content/themes/kallyas/single-documentation.php
<?php if ( ! defined( 'ABSPATH' ) ) {
return;
}
/*
* Template layout for single documentation entries
* @package Kallyas
* @author Team Hogash
*/
wp_enqueue_style( 'documentation-css', THEME_BASE_URI . '/css/pages/documentation.css', array('kallyas-styles'), ZN_FW_VERSION );
get_header();
/*** USE THE NEW HEADER FUNCTION **/
get_template_part( 'components/theme-subheader/subheader', 'documentation' );
/*
* Import global variables
*/
global $post;
if ( ! isset( $post ) || ! isset( $post->ID ) ) {
return;
}
$main_class = zn_get_sidebar_class( 'documentation_sidebar' );
if ( strpos( $main_class, 'right_sidebar' ) !== false || strpos( $main_class, 'left_sidebar' ) !== false ) {
$zn_config['sidebar'] = true;
} else {
$zn_config['sidebar'] = false;
}
$sidebar_size = zget_option( 'sidebar_size', 'unlimited_sidebars', false, 3 );
$content_size = 12 - (int)$sidebar_size;
$zn_config['size'] = $zn_config['sidebar'] ? 'col-sm-8 col-md-' . $content_size : 'col-sm-12';
/*--------------------------------------------------------------------------------------------------
CONTENT AREA
--------------------------------------------------------------------------------------------------*/
?>
<section id="content" class="site-content" >
<div class="container">
<div class="row">
<div id="mainbody" class="<?php echo esc_attr( $main_class ); ?>" <?php echo WpkPageHelper::zn_schema_markup( 'main' ); ?>>
<?php while ( have_posts() ) : the_post();
?>
<div class="col-sm-12 post-<?php the_ID(); ?>">
<div class="zn_doc_breadcrumb fixclear">
<?php _e( "YOU ARE HERE:", 'zn_framework' ); ?>
<?php
echo '<span><a href="' . get_site_url() . '">' . __( "HOME", 'zn_framework' ) . '</a></span>';
if ( is_tax( 'documentation_category' ) ) {
$term = get_term_by( 'slug', get_query_var( 'term' ), get_query_var( 'taxonomy' ) );
$parents = array();
$parent = $term->parent;
while ( $parent ) {
$parents[] = $parent;
$new_parent = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
$parent = $new_parent->parent;
}
if ( ! empty( $parents ) ) {
$parents = array_reverse( $parents );
foreach ( $parents as $parent ) {
$item = get_term_by( 'id', $parent, get_query_var( 'taxonomy' ) );
echo '<span><a href="' . get_term_link( $item->slug, 'documentation_category' ) . '">' . $item->name . '</a></span>';
}
}
$queried_object = $wp_query->get_queried_object();
echo '<span>' . $queried_object->name . '</span>';
} elseif ( is_search() ) {
echo '<span>' . __( "Search results for ", 'zn_framework' ) . '"' . get_search_query() . '"</span>';
} elseif ( is_single() ) {
// Show category name
$cats = get_the_term_list( $post->ID, 'documentation_category', '', '|zn_preg|', '|zn_preg|' );
$cats = explode( '|zn_preg|', $cats );
if ( ! empty( $cats[0] ) ) {
echo '<span>' . $cats[0] . '</span>';
}
// Show post name
echo '<span>' . get_the_title() . '</span>';
}
?>
</div>
<div class="clearfix"></div>
<h1 class="page-title kl-blog-post-title entry-title" <?php echo WpkPageHelper::zn_schema_markup( 'title' ); ?>><?php the_title(); ?></h1>
<div class="itemView clearfix eBlog kl-blog kl-blog-list-wrapper kl-blog--style-<?php echo zget_option( 'zn_main_style', 'color_options', false, 'light' ); ?>">
<div class="itemBody kl-blog-post-body">
<!-- Blog Content -->
<?php the_content(); ?>
</div>
<!-- end item body -->
<div class="clearfix"></div>
</div>
<!-- End Item Layout -->
</div>
<?php endwhile;
wp_reset_query(); ?>
</div>
<?php get_sidebar(); ?>
</div><!--// End .row -->
</div><!--// End .col-sm-12 -->
</section>
<?php get_footer(); ?>