wp_create_term

函数
wp_create_term ( $tag_name, $taxonomy = 'post_tag' )
参数
  • (string) $tag_name The term name.
    Required:
  • (string) $taxonomy Optional. The taxonomy within which to create the term. Default 'post_tag'.
    Required:
    Default: 'post_tag'
返回值
  • (array|WP_Error)
定义位置
相关方法
wp_create_userwp_create_categorywp_create_tagwpmu_create_userwp_delete_term
引入
2.8.0
弃用
-

wp_create_term: 这是一个在特定的分类法中创建一个新术语的函数。它可以用来以编程方式创建一个术语,而不是在WordPress仪表盘上手动创建。

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

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

常见问题

FAQs
查看更多 >