在 WordPress 中取消设置后置术语
我用它来设置自定义分类法“mois”中的后置术语:
wp_set_post_terms( $post_id, array ($term_id['term_id']), 'mois' ,true);
它工作得很好,但我该如何做相反的事情:取消设置后置术语? 我不想删除该术语,只是将其从帖子中取消设置。
I use this to set post terms from a custom taxonomy 'mois':
wp_set_post_terms( $post_id, array ($term_id['term_id']), 'mois' ,true);
It works fine, but how coul i do the inverse : unset a post term ?
I don't want to delete the term but only unset it from the post.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是您问题的解决方案。您只需使用 wp_remove_object_terms 挂钩即可使用帖子 ID 取消设置条款。
以下是如何执行此操作的示例:
$tag = array( 5 ); // 要取消设置的术语数组。
wp_remove_object_terms( $post_id, $tag, 'mois' );
Here is the solution for your question. You can just use wp_remove_object_terms hook to unset the terms using post id.
Here is the example of how you can do it:
$tag = array( 5 ); // Array of terms to be unset.
wp_remove_object_terms( $post_id, $tag, 'mois' );