WordPress插入分类法函数:wp_insert_term
WordPress函数wp_insert_term用于插入一个分类法项目 wp_insert_term( st…
WordPress函数wp_insert_term用于插入一个分类法项目
wp_insert_term( string $term, string $taxonomy, array|string $args = array() )
函数参数
$term
字符串
分类名称
$taxonomy
字符串
分类法名称
$args
数组或字符串
分类的参数,可用值如下:
- alias_of:别名;
- description:分类的简要描述;
- parent:如果指定分类法支持层级,可以对创建的分类指定父分类;
- slug:别名。
函数返回值
插入分类成功返回包含term_id和term_taxonomy_id的数组,失败返回WP_Error
函数使用示例
wp_insert_term('图书', 'product', array( 'description' => '图书分类描述', 'slug' => 'books', 'parent' => 1, ) );
扩展阅读
wp_insert_term()函数位于:wp-includes/taxonomy.php
相关函数:
- wp_insert_term_data()
- edit_terms()
类别:WordPress函数讲解、
本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。
还没有任何评论,赶紧来占个楼吧!