' ) { $cat = get_category( $cat_id ); if ( ! $cat ) return; // Рекурсивно выводим родителей if ( $cat->parent != 0 ) { render_full_category_breadcrumbs( $cat->parent, $position, $separator ); } // Выводим категорию с Schema.org структурой echo '
  • ' . esc_html( $cat->name ) . '
  • '; $position++; } $categories = get_the_category(); if ( empty( $categories ) ) return; $main_cat = $categories[0]; $breadcrumb_position = 1; ?>