我正在编写一个Web服务,我需要在JSON响应中获取所有类别的Wordpress列表。有人已经这样做了吗?请分享解决方案。
答案 0 :(得分:1)
以下是json格式的所有类别列表的功能。我希望它能起作用。请试试这个: -
<?php
function get_all_categories(){
$args = array(
'type' => 'post',
'child_of' => 0,
'parent' => '',
'orderby' => 'name',
'order' => 'ASC',
'hide_empty' => 1,
'hierarchical' => 1,
'exclude' => '',
'include' => '',
'number' => '',
'taxonomy' => 'category',
'pad_counts' => false
);
$categories = get_categories( $args );
return json_encode($categories));
}
?>