WordPress插入分类法函数:wp_insert_term

WordPress函数wp_insert_term用于插入一个分类法项目

1
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

函数使用示例

1
2
3
4
5
6
wp_insert_term('图书', 'product', array(
        'description' => '图书分类描述',
        'slug'        => 'books',
        'parent'      => 1,
    )
);

扩展阅读

wp_insert_term()函数位于:wp-includes/taxonomy.php

相关函数:

  • wp_insert_term_data()
  • edit_terms()
原文链接:https://xiaohost.com/2270.html,转载请注明出处。
0