Current Path : /var/test/www/foundation/wp-content/themes/kallyas/ |
Current File : /var/test/www/foundation/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; } /*-------------------------------------------------------------------------------------------------- CONTENT AREA --------------------------------------------------------------------------------------------------*/ ?> <section id="content" class="site-content" > <div class="container"> <div id="mainbody" <?php echo WpkPageHelper::zn_schema_markup('main'); ?>> <div class="row"> <?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> </div><!--// End #mainbody --> </div><!--// End .col-sm-12 --> </section> <?php get_footer(); ?>