A在数据库中有很多具有自定义帖子类型的帖子。同时,主题创建了分类机构:
function my_taxonomies_institutions() {
$labels = array(
'name' => _x( 'Category', 'taxonomy general name' ),
'singular_name' => _x( 'Category', 'taxonomy singular name' ),
// and tothers
);
$args = array(
'labels' => $labels,
'hierarchical' => true,
'show_admin_column' => true,
'rewrite' => array( 'hierarchical' => true, 'slug' => 'institutions' ),
);
register_taxonomy( 'institutions', 'institution', $args );
}
add_action( 'init', 'my_taxonomies_institutions', 0 );
好的,管理区域中有一个菜单项Instituitions,那里有一些类别,例如-Sections。现在,为了使为该分类法构建的主题动画化,我需要遍历所有帖子,并根据帖子的post_type将Instituitions术语附加到帖子中。
print term_exists('sections'); // 7
我尝试了以下
$ret = wp_set_post_terms($pid, 7, 'institution');
$ret = wp_set_post_terms($pid, 'sections', 'institution');
但结果是
WP_Error对象([错误] =>数组([invalid_taxonomy] =>数组([0] =>Невернаятаксономия。))[error_data] =>数组())
我做错了什么?
答案 0 :(得分:1)
您以名称institutions
注册了分类法,但错误地使用了institution
,因此错误了[invalid_taxonomy]
。应该是这样
$ret = wp_set_post_terms($pid, array(7,), 'institutions');
$ret = wp_set_post_terms($pid, array('sections',), 'institutions');
要将带有term_id = 7
的术语“节”分配给所有institution
类型的帖子,请执行类似的操作
$posts = get_posts(array(
'post_type' => 'institution',
'post_status' => 'publish',
'posts_per_page' => -1
));
foreach ( $posts as $post ) {
wp_set_post_terms( $post->ID, array(7,), 'institutions');
// OR
// wp_set_post_terms( $post->ID, array ('sections',), 'institutions');
}
我希望这会起作用。 请查看this法典页面以获取更多信息。
答案 1 :(得分:0)
尝试类似的东西:
$posts = get_posts([
'post_type' => 'institution',
'post_status' => 'publish',
'numberposts' => -1
]);
foreach ( $posts as $post ) {
wp_set_post_terms( $post->ID; array( ), 'institutions');
}
如果您还想按ID来wp_set_post_terms,则应使用wp_set_post_terms( $post->ID; array( $id ))
而不是wp_set_post_terms( $post->ID; $id)
来看看here