HY,
如何在 wp_insert_post 中对wordpress中的所有类别和子类别使用 post_category ?
感谢答案。
答案 0 :(得分:1)
像数组一样:
$query = new WP_Query( array( 'category_name' => 'category-name' ) );
while( $query->have_posts() ); $query->the_post();
//show your post here.
endwhile;