Я использую код, который отображает категории продуктов верхнего уровня на всех страницах сайта. [code] /* Adding top-level product category */ add_action('woodmart_after_header', 'show_top_level_categories', 30); function show_top_level_categories() { // We exclude the cart, checkout, and thank you pages if (is_cart() || is_checkout() || is_order_received_page()) return;
global $wp_query;
// We get the ID of the current category $current_category_id = isset($wp_query->queried_object->term_id) ? $wp_query->queried_object->term_id : null;