欢迎使用WPSE常见问题解答!这类问题可能最适合stackoverflow, 而不是在这里,因为这个问题与WordPress没有特别的关系。您只需要获得一个ID数组(一个简单的foreach循环可以做到这一点,或者使用Wordpress\'wp_list_pluck
) 然后分解该阵列:
//$categories is the array of category objects
$cat_ids = wp_list_pluck($categories,\'term_id\');
echo "\'".implode(\',\',$cat_ids)."\'";
编辑并将此方法合并到OP的代码示例中:
<?php
$args=array(
\'child_of\' => 79
);
$categories=get_categories($args);
foreach($categories as $category) {
$cat_ids[] = $category->term_id;
}
echo "\'".implode(\',\',$cat_ids)."\'";
?>