Temada yer alan breadcrumb kodlarını schema uygun hale getirmeye çalışıyorum. Aşağıdaki kod ile kategori url ve adı yazdırılıyor sanırım. Functions php dosyası içinde yer aldığı için pek müdahale edemedim. Nasıl düzenleyebilirim bunu

if ( is_category() || is_singular( 'post' ) ) {
$category = get_the_category();
$id = $category[0]->cat_ID;
echo '
  • ';
    echo wp_kses_post( get_category_parents( $id, true, ' /
  • ', false ) );
    }