从自定义查询中获取wordpress类别列表

时间:2015-09-01 04:33:17

标签: wordpress api

我正在编写一个Web服务,我需要在JSON响应中获取所有类别的Wordpress列表。有人已经这样做了吗?请分享解决方案。

1 个答案:

答案 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));
      }
    ?>