简单问题-如何通过编程删除所有类别?
例如,这将返回所有类别的列表
$args = array(
"hide_empty" => 0,
"type" => "post",
"orderby" => "name",
"order" => "ASC"
);
$types = get_categories($args);
如何简单地删除它们,以便用其他类别替换它们?
最合适的回答,由SO网友:CodeMascot 整理而成
请查看下面的代码块-
$args = array(
"hide_empty" => 0,
"type" => "post",
"orderby" => "name",
"order" => "ASC"
);
$types = get_categories($args);
foreach ( $types as $type) {
wp_delete_category( $type->ID );
}
功能
wp_delete_category
将删除单个类别。所以我们需要通过
$types
删除每个类别。
希望这有帮助。