我希望能够理解为Wordpress功能提供的标准功能描述。特别是,有人可以从here解释以下示例:
用法
<?php wp_list_categories( $args ); ?>
默认使用
<?php $args = array(
'show_option_all' => ,
'orderby' => 'name',
'order' => 'ASC',
'show_last_update' => 0,
'style' => 'list',
'show_count' => 0,
'hide_empty' => 1,
'use_desc_for_title' => 1,
'child_of' => 0,
'feed' => ,
'feed_type' => ,
'feed_image' => ,
'exclude' => ,
'exclude_tree' => ,
'include' => ,
'current_category' => 0,
'hierarchical' => true,
'title_li' => __( 'Categories' ),
'number' => NULL,
'echo' => 1,
'depth' => 0 ); ?>
我可以猜到大部分内容,但特别是我无法猜测:
谢谢,
克里斯
答案 0 :(得分:2)