在 WordPress 中取消设置后置术语

发布于 2025-01-12 09:12:40 字数 190 浏览 0 评论 0原文

我用它来设置自定义分类法“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

烈酒灼喉 2025-01-19 09:12:40

这是您问题的解决方案。您只需使用 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' );

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文