//wordpress 根据文章ID获取分类ID
$category=get_the_category( $post_ID );
$len= count($category);
for($i=0;$i<$len;$i++){
$catid[] =$category[$i]->term_id;
}
print_r( $catid );
//wordpress 根据文章ID获取标签ID
$tags=wp_get_post_tags( $post_ID );
$len= count($ tags );
for($i=0;$i<$len;$i++){
$tagid[] =$ tags [$i]->term_id;
}
print_r( $ tagid );
未经允许不得转载:前端撸码笔记 » wordpress 根据文章ID获取分类ID和标签ID