wp_create_term() WordPress Function
The wp_create_term() function is used to create a new term in the WordPress database. This function takes two arguments: the term name and the term slug. The term name is the name of the term, while the term slug is the URL-friendly version of the term name. The function will return the new term object on success, or false on failure.
wp_create_term( string $tag_name, string $taxonomy = 'post_tag' ) #
Add a new term to the database if it does not already exist.
Parameters
- $tag_name
(string)(Required)The term name.
- $taxonomy
(string)(Optional) The taxonomy within which to create the term.
Default value: 'post_tag'
Return
(array|WP_Error)
Source
File: wp-admin/includes/taxonomy.php
function wp_create_term( $tag_name, $taxonomy = 'post_tag' ) { $id = term_exists( $tag_name, $taxonomy ); if ( $id ) { return $id; } return wp_insert_term( $tag_name, $taxonomy ); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
2.8.0 | Introduced. |