M
M
Mesuti2020-08-03 15:11:49
WordPress
Mesuti, 2020-08-03 15:11:49

How to display a list of subcategories on a category page?

Hey!
How to list only subcategories on a category page?

echo ... ;

ps while I found wp_list_categories () I
understand ..

Answer the question

In order to leave comments, you need to log in

2 answer(s)
M
Mesuti, 2020-08-03
@Mesuti

$html.= '<div style="display: none">';

$category = get_queried_object();
$category_id = $category->term_id;
            
$li_args = array(
 'child_of' => $category_id,
 'depth' => 1, // Глубина
 'style' => 'none',  // в виде ссылок, разделенных тегом
 'hide_empty' => 0,  // Исключение пустых рубрик	  
 'orderby'      => 'name',  // сортируем по названиям
 'show_count'   => 0,  // не показываем количество записей
 'pad_counts'   => 0,  // не показываем количество записей у родителей
 //'hierarchical' => 1,  // древовидное представление
 'title_li'     => ''  // список без заголовка
);
$html.= wp_list_categories($li_args);	
$html.= '</div>';

E
Eugene, 2020-08-03
@iamd503

wp_query

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question