我有一个称为“位置”的分层自定义分类法。父类别是国家名称,子类别是国家下的领土。
如何通过编程将这些术语附加到帖子?
$country = \'Egypt\';
$territory = \'Hurghada\';
因此,如果埃及类别不存在,我需要创建它,并且需要在埃及下的子类别中附加$territory。
这就是我目前所处的位置:
$post_id = 10;
$country_term_id = term_exists( $country, \'locations\' );
if ($country_term_id !== 0 && $country_term_id !== null) {
wp_set_post_terms($id, $country,\'locations\');
} else {
//I guess this is where i need to set the territory?
}