以下是我遇到的问题:
我有一个名为“weddingguests”的自定义帖子类型。这个自定义帖子类型“weddingguests”有一个自定义分类法,“friendsof”,层次结构。我想通过编程在这个自定义分类法中插入“friendsof”2个术语:“新娘的朋友”和“新郎的朋友”。下面是我用来插入一个术语的函数和操作:
// programatically add 2 terms to the taxonomy "FRIENDS OF"
function example_insert_category() {
wp_insert_term(
\'Example Category\',
\'friendsof\'
);
}
add_action( \'after_setup_theme\', \'example_insert_category\' );
问题:wp\\u insert\\u term似乎不适用于我的自定义分类法
我所尝试的:
我尝试过将分类法从层次转换为非层次-这不起作用-我尝试过使用wp\\u insert\\u term(相同的代码)向帖子“类别”添加术语-这很有效-我尝试过将自定义分类法“friendsof”分配给帖子,然后添加我的术语(我认为我构建自定义帖子类型的方式有问题)-但没有工作