gpt4 book ai didi

wordpress - 如何以编程方式创建Wordpress标签?

转载 作者:行者123 更新时间:2023-12-03 09:56:20 26 4
gpt4 key购买 nike

以下代码段以编程方式添加了Wordpress类别。我的问题是如何以编程方式添加标签?

//Define the category
$my_cat = array('cat_name' => 'My Category', 'category_description' => 'A Cool Category', 'category_nicename' => 'category-slug', 'category_parent' => '');

// Create the category
$my_cat_id = wp_insert_category($my_cat);

在这个问题中,我正在谈论以编程方式将标签添加到数据库中。

说,我有1000个标签可添加到全新安装中。而且我不想通过常规管理面板来手动添加标签。我正在寻找一种编程解决方案。我发布的代码片段照顾了猫的添加...多亏了特定的wp函数wp_insert_category...。虽然没有称为wp_insert_tag的函数...

但是,看一下编解码器,我看到了wp_insert_term函数,它很可能是完成此工作的函数-看来。

最佳答案

使用 wp_insert_term() 添加类别,标签和其他分类法,因为wp_insert_category()会引发PHP错误“未定义的函数”。

<?php wp_insert_term( $term, $taxonomy, $args = array() ); ?> 
$term是添加或更新的术语。

如果是标签,则将 $taxonomy的值更改为 post_tag;如果是类别,则将其更改为 category

$args数组中,您可以指定插入词的值(标签,类别等)

示例:
wp_insert_term(
'Apple', // the term
'product', // the taxonomy
array(
'description'=> 'A yummy apple.',
'slug' => 'apple',
'parent'=> $parent_term['term_id'] // get numeric term id
)
);

关于wordpress - 如何以编程方式创建Wordpress标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8453780/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com