wpseek.com
A WordPress-centric search engine for devs and theme authors



wp_create_category › WordPress Function

Since2.0.0
Deprecatedn/a
wp_create_category ( $category_name, $category_parent = 0 )
Parameters: (2)
  • (string) $category_name Category name.
    Required: Yes
  • (int) $category_parent Optional. ID of parent category.
    Required: No
    Default:
Returns:
  • (int) The ID of category term on success, or zero on failure.
Defined at:
Codex:

Adds a new category to the database if it does not already exist.



Source

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

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