wp_insert_term()

WordPress插入分类法函数

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

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索