Tag Cumulus

User Center

2009
11-11
wordpress的stdClass处理方式

下面是wordpress 的栏目返回值,从里面发现了stdClass 想输出里面第一个栏目ID 代码是: $cat_id= get_the_category( $post->id ); echo $cat_id[0]->term_id; 跟JSON的对象输出一样 function get_the_category_list( $separator = '', $parents='', $post_id = false ) { global $wp_rewrite;   // 找到当前文章对应的分类 (数组, 因为文章可以属于多个分类)...