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



wp_create_tag › WordPress Function

Seit2.3.0
Veraltetn/v
wp_create_tag ( $tag_name )
Parameter:
  • (int|string) $tag_name
    Erforderlich: Ja
Gibt zurück:
  • (array|WP_Error)
Definiert in:
Codex:

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



Quellcode

function wp_create_tag( $tag_name ) {
	return wp_create_term( $tag_name, 'post_tag' );
}