WordPress Alt Kategorileri İkonla Çekme
Eğer alt kategori varsa onu getir yoksa eğer kategori postlarını getir.
İkonları göstermek için kullanılan eklenti: WPCustom Category Image
taxonomy, array( 'parent' => $term->term_id, 'hide_empty' => false ) ); // print_r($children); // debug yapmak için burdaki commenti kaldır if($children) { // bu yapı alt kategori olup olmadığını kontrol eder. Eğer varsa aşağıdaki blogu calıstırır. $args = array('child_of' => 4); $categories = get_categories( $args ); foreach($categories as $category) { $term_id = $category->term_id; $image = category_image_src( array('term_id'=>$term_id) , false ); echo ' name ) . '" >'; } } else { // eğer alt kategori yoksa postları döndürür. if (have_posts()) : while (have_posts()) : the_post(); ?>![]()
' . $category->name.'
![]()
Ara bul