最近博客站内的栏目有些调整,资源下载扩充了栏目,由此,需要移除一批文章中和栏目一样的tag。
示例函数如下:
function untag_posts($post_ids, $tagId) {
global $wpdb;
$delete_query = "DELETE FROM {$wpdb->term_relationships} where object_id in ({$post_ids}) and term_taxonomy_id={$tagId}";
$myrows = $wpdb->get_results({$delete_query});
}
#$post_ids代表要处理的文章id,例如:1,2,5,8,10
#$tagId代表要移除的tag id,后台可以获取
参考资料:remove tags from posts in php
如您从本文得到了有价值的信息或帮助,请考虑扫描文末二维码捐赠和鼓励。
如本文对您有用,捐赠和留言 将是对我最好的支持~(捐赠可转为站内积分)
如愿意,请向朋友推荐本站,谢谢。
尊重他人劳动成果。转载请务必附上原文链接,我将感激不尽。
留言