有人知道如何显示wp_list_categories()
在div
而不是li
?
我基本上希望将主要类别及其子类别包装在一个引导列中。
$args = array(
\'taxonomy\' => \'product_category\',
\'hide_empty\' => 0,
\'orderby\' => \'name\',
\'order\' => \'ASC\',
\'show_count\' => 0,
\'use_desc_for_title\' => 0,
\'title_li\' => 0
);
wp_list_categories($args);