Файловый менеджер - Редактировать - /home/c7lekhnath/ticcollege/wp-content/themes/Triveni/content/single-magazine.php
Назад
<?php /** * The template part for displaying single posts style 1 */ // print header title if( get_post_type() == 'post' ){ get_template_part('header/header', 'title-blog'); } $post_option = kingster_get_post_option(get_the_ID()); $post_option = empty($post_option)? array(): $post_option; $post_option['show-content'] = empty($post_option['show-content'])? 'enable': $post_option['show-content']; if( empty($post_option['sidebar']) || $post_option['sidebar'] == 'default' ){ $sidebar_type = kingster_get_option('general', 'blog-sidebar', 'none'); $sidebar_left = kingster_get_option('general', 'blog-sidebar-left'); $sidebar_right = kingster_get_option('general', 'blog-sidebar-right'); }else{ $sidebar_type = empty($post_option['sidebar'])? 'none': $post_option['sidebar']; $sidebar_left = empty($post_option['sidebar-left'])? '': $post_option['sidebar-left']; $sidebar_right = empty($post_option['sidebar-right'])? '': $post_option['sidebar-right']; } if( $sidebar_type != 'none' || $post_option['show-content'] == 'enable' ){ echo '<div class="kingster-content-container kingster-container">'; echo '<div class="' . kingster_get_sidebar_wrap_class($sidebar_type) . '" >'; // sidebar content echo '<div class="' . kingster_get_sidebar_class(array('sidebar-type'=>$sidebar_type, 'section'=>'center')) . '" >'; echo '<div class="kingster-content-wrap kingster-item-pdlr clearfix" >'; // single content if( $post_option['show-content'] == 'enable' ){ echo '<div class="kingster-content-area" >'; if( in_array(get_post_format(), array('aside', 'quote', 'link')) ){ get_template_part('content/content', get_post_format()); }else{ get_template_part('content/content', 'single'); } echo '</div>'; } } if( !post_password_required() ){ if( $sidebar_type != 'none' ){ echo '<div class="kingster-page-builder-wrap kingster-item-rvpdlr" >'; do_action('gdlr_core_print_page_builder'); echo '</div>'; // sidebar == 'none' }else{ ob_start(); do_action('gdlr_core_print_page_builder'); $pb_content = ob_get_contents(); ob_end_clean(); if( !empty($pb_content) ){ if( $post_option['show-content'] == 'enable' ){ echo '</div>'; // kingster-content-area echo '</div>'; // kingster_get_sidebar_class echo '</div>'; // kingster_get_sidebar_wrap_class echo '</div>'; // kingster_content_container } echo gdlr_core_escape_content($pb_content); echo '<div class="kingster-bottom-page-builder-container kingster-container" >'; // kingster-content-area echo '<div class="kingster-bottom-page-builder-sidebar-wrap kingster-sidebar-style-none" >'; // kingster_get_sidebar_class echo '<div class="kingster-bottom-page-builder-sidebar-class" >'; // kingster_get_sidebar_wrap_class echo '<div class="kingster-bottom-page-builder-content kingster-item-pdlr" >'; // kingster_content_container } } } // social share if( kingster_get_option('general', 'blog-social-share', 'enable') == 'enable' ){ if( class_exists('gdlr_core_pb_element_social_share') ){ $share_count = (kingster_get_option('general', 'blog-social-share-count', 'enable') == 'enable')? 'counter': 'none'; echo '<div class="kingster-single-social-share kingster-item-rvpdlr" >'; echo gdlr_core_pb_element_social_share::get_content(array( 'social-head' => $share_count, 'style'=>'color', 'layout'=>'right-text', 'text-align'=>'left', 'facebook'=>kingster_get_option('general', 'blog-social-facebook', 'enable'), 'linkedin'=>kingster_get_option('general', 'blog-social-linkedin', 'enable'), 'google-plus'=>kingster_get_option('general', 'blog-social-google-plus', 'enable'), 'pinterest'=>kingster_get_option('general', 'blog-social-pinterest', 'enable'), 'stumbleupon'=>kingster_get_option('general', 'blog-social-stumbleupon', 'enable'), 'twitter'=>kingster_get_option('general', 'blog-social-twitter', 'enable'), 'email'=>kingster_get_option('general', 'blog-social-email', 'enable'), 'padding-bottom'=>'0px' )); echo '</div>'; } } // tag for blog style 2 echo '<div class="kingster-single-magazine-author-tags clearfix" >'; echo get_the_term_list(get_the_ID(), 'post_tag', '', '' , ''); echo '</div>'; // prev - next post navigation if( kingster_get_option('general', 'blog-navigation', 'enable') == 'enable' ){ $prev_post = get_previous_post(); $prev_post_html = ''; if( !empty($prev_post) ){ $prev_post_html = get_previous_post_link( '<span class="kingster-single-nav kingster-single-nav-left">' . '<span class="kingster-text kingster-title-font" >' . esc_html__( 'Previous Post', 'kingster' ) . '</span>' . '%link' . '</span>', '<span class="kingster-single-nav-title kingster-title-font" >%title</span>' ); } $next_post = get_next_post(); $next_post_html = ''; if( !empty($next_post) ){ $next_post_html = get_next_post_link( '<span class="kingster-single-nav kingster-single-nav-right">' . '<span class="kingster-text kingster-title-font" >' . esc_html__( 'Next Post', 'kingster' ) . '</span>' . '%link' . '</span>', '<span class="kingster-single-nav-title kingster-title-font" >%title</span>' ); } if( !empty($prev_post_html) || !empty($next_post_html) ){ echo '<div class="kingster-single-nav-area clearfix" >' . $prev_post_html . $next_post_html . '<div class="kingster-single-nav-area-divider" ></div></div>'; } } // author section $author_desc = get_the_author_meta('description'); if( !empty($author_desc) && kingster_get_option('general', 'blog-author', 'enable') == 'enable' ){ echo '<div class="kingster-single-author clearfix" >'; echo '<div class="kingster-single-author-wrap" >'; echo '<div class="kingster-single-author-avartar kingster-media-image">' . get_avatar(get_the_author_meta('ID'), 90) . '</div>'; echo '<div class="kingster-single-author-content-wrap" >'; echo '<div class="kingster-single-author-caption kingster-info-font" >' . esc_html__('About the author', 'kingster') . '</div>'; echo '<h4 class="kingster-single-author-title">'; the_author_posts_link(); echo '</h4>'; echo '<div class="kingster-single-author-description" >' . gdlr_core_escape_content(gdlr_core_text_filter($author_desc)) . '</div>'; echo '</div>'; // kingster-single-author-content-wrap echo '</div>'; // kingster-single-author-wrap echo '</div>'; // kingster-single-author } // related post $enable_related_post = kingster_get_option('general', 'enable-related-post', 'enable'); if( $enable_related_post == 'enable' && class_exists('gdlr_core_blog_style') ){ $related_post_args = array( 'blog-style' => kingster_get_option('general', 'related-post-blog-style', 'blog-column-with-frame'), // grid-with-frame 'blog-column-style' => kingster_get_option('general', 'related-post-blog-column-style', 'style-2'), // grid-with-frame 'thumbnail-size' => kingster_get_option('general', 'related-post-thumbnail-size', 'full'), 'column-size' => kingster_get_option('general', 'related-post-column-size', '20'), 'num-fetch' => kingster_get_option('general', 'related-post-num-fetch', '3'), 'layout' => 'fitrows', 'excerpt' => 'specify-number', 'excerpt-number' => kingster_get_option('general', 'related-post-excerpt-number', '0'), 'meta-option' => kingster_get_option('general', 'related-post-meta-option', array()), 'frame-shadow-size' => array('x'=>'0', 'y'=>'0', 'size'=>'60px'), 'frame-shadow-opacity' => '0.1', 'frame-shadow-color' => '#000', 'blog-title-font-size' => '14px' ); // query related post $args = array('post_type' => 'post', 'suppress_filters' => false); $args['posts_per_page'] = $related_post_args['num-fetch']; $args['post__not_in'] = array(get_the_ID()); $args['ignore_sticky_posts'] = 1; $related_terms = get_the_terms(get_the_ID(), 'post_tag'); $related_tags = array(); if( !empty($related_terms) ){ foreach( $related_terms as $term ){ $related_tags[] = $term->term_id; } $args['tax_query'] = array(array('terms'=>$related_tags, 'taxonomy'=>'post_tag', 'field'=>'id')); } $query = new WP_Query($args); // print item if( $query->have_posts() ){ $blog_style = new gdlr_core_blog_style(); echo '<div class="kingster-single-related-post-wrap kingster-item-rvpdlr" >'; echo '<h3 class="kingster-single-related-post-title kingster-item-mglr" >' . esc_html__('Related Posts', 'kingster') . '</h3>'; $column_sum = 0; echo '<div class="gdlr-core-blog-item-holder clearfix" >'; while( $query->have_posts() ){ $query->the_post(); $additional_class = ' gdlr-core-item-pdlr'; $additional_class .= ' gdlr-core-column-' . $related_post_args['column-size']; if( $column_sum == 0 || $column_sum + intval($related_post_args['column-size']) > 60 ){ $column_sum = intval($related_post_args['column-size']); $additional_class .= ' gdlr-core-column-first'; }else{ $column_sum += intval($related_post_args['column-size']); } echo '<div class="gdlr-core-item-list ' . esc_attr($additional_class) . '" >' . $blog_style->get_content($related_post_args) . '</div>'; } echo '</div>'; // blog-item-holder echo '</div>'; // kingster-single-related-post-wrap wp_reset_postdata(); } } // comments template if( comments_open() || get_comments_number() ){ echo '<div class="kingster-comment-wrapper">'; comments_template(); echo '</div>'; } echo '</div>'; // kingster-content-area echo '</div>'; // kingster-get-sidebar-class // sidebar left if( $sidebar_type == 'left' || $sidebar_type == 'both' ){ echo kingster_get_sidebar($sidebar_type, 'left', $sidebar_left); } // sidebar right if( $sidebar_type == 'right' || $sidebar_type == 'both' ){ echo kingster_get_sidebar($sidebar_type, 'right', $sidebar_right); } echo '</div>'; // kingster-get-sidebar-wrap-class echo '</div>'; // kingster-content-container ?>
| ver. 1.4 |
Github
|
.
| PHP 8.3.20 | Генерация страницы: 0.19 |
proxy
|
phpinfo
|
Настройка