如何将自定义分类术语与自定义帖子类型关联?

时间:2020-02-13 作者:Asha

如何将自定义分类术语与post类型insert关联到wp\\U term\\U relationships表中。

1 个回复
最合适的回答,由SO网友:Asha 整理而成
$catids = $_POST[\'artticle_category\'];
/*
 * If the ids are coming from the database or another source, we would 
 * need to make sure these were integers or convert them to interger using intval:
 */

$catids = array_map( \'intval\', $catids );
$catids = array_unique( $catids );
$taxonomy = \'articles_category\';
$post_id = \'1\';

$term_taxonomy_ids = wp_set_object_terms( $post_id, $catids , $taxonomy );

相关推荐

在unctions.php文件中获取每个帖子的帖子术语‘wp_get_POST_Terms’

我使用了一个带有Ajax操作的表单来在提交时获取帖子信息。它很有魅力。然而,我使用了类别来将工作划分为不同的类别。其中之一就是品牌。在页面模板中,我使用的脚本有效,但在函数中使用时有效。php文件。它无法获得所需的结果。我认为这可能与何时触发对帖子的查询或如何设置add\\u操作有关。有人能帮我查一下ID为31的类别的名称吗?在函数中使用时。php。以下是我写的:if( $query->have_posts() ) : while( $query->have_posts() )