get_icon_svg('list'); ?>
get_options(); $mode = $options['dark_mode'] ?? 'auto'; $primary = $options['primary_color'] ?? '#0071e3'; $show_toc = !empty($options['toc_enabled']); $show_reading = !empty($options['reading_time']); $show_share = !empty($options['social_share']); $show_reactions = !empty($options['reactions_enabled']); /* ── Current article ── */ $post_id = get_the_ID(); $terms = get_the_terms($post_id, 'kng_doc_category'); $cat = ($terms && !is_wp_error($terms)) ? $terms[0] : null; $tags = get_the_terms($post_id, 'kng_doc_tag'); /* ── Sidebar: articles in same category ── */ $sidebar_posts = []; if ($cat) { $sidebar_posts = get_posts([ 'post_type' => 'kng_doc', 'posts_per_page' => 40, 'tax_query' => [[ 'taxonomy' => 'kng_doc_category', 'terms' => $cat->term_id, ]], 'orderby' => 'menu_order', 'order' => 'ASC', ]); } /* ── Meta ── */ $views = (int) get_post_meta($post_id, '_kng_doc_views', true); $reading_time = $ext::estimate_reading_time(get_the_content()); /* ── Related ── */ $related = $ext->get_related_docs($post_id, 3); /* ── Prev / Next ── */ $nav = $ext->get_article_navigation($post_id); get_header(); ?>