wpseek.com
Eine auf WordPress spezialiserte Suchmaschine für Entwickler und Theme-Autoren



wp_create_term › WordPress Function

Seit2.8.0
Veraltetn/v
wp_create_term ( $tag_name, $taxonomy = 'post_tag' )
Parameter: (2)
  • (string) $tag_name The term name.
    Erforderlich: Ja
  • (string) $taxonomy Optional. The taxonomy within which to create the term. Default 'post_tag'.
    Erforderlich: Nein
    Standard: 'post_tag'
Gibt zurück:
  • (array|WP_Error)
Definiert in:
Codex:

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



Quellcode

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 );
}