wp_create_category

函数
wp_create_category ( $cat_name, $category_parent = 0 )
参数
  • (int|string) $cat_name Category name.
    Required:
  • (int) $category_parent Optional. ID of parent category.
    Required:
返回值
  • (int|WP_Error)
定义位置
相关方法
wp_create_categorieswp_update_categorywp_delete_categorywp_create_termwp_insert_category
引入
2.0.0
弃用
-

wp_create_category: 这是一个创建新类别的函数。它可以用来以编程方式创建一个类别,而不是在WordPress仪表盘上手动创建。

在数据库中添加一个新的类别,如果它还不存在的话。

function wp_create_category( $cat_name, $category_parent = 0 ) {
	$id = category_exists( $cat_name, $category_parent );
	if ( $id ) {
		return $id;
	}

	return wp_insert_category(
		array(
			'cat_name'        => $cat_name,
			'category_parent' => $category_parent,
		)
	);
}

常见问题

FAQs
查看更多 >