WordPress如何给已发布文章批量添加TAG 标签
在当前网站的主题的functions.php里加上下面的代码;
function naruco_mod_tags(){
$post_ids = array(1,2,3,4,5,6,7,8,9,10);//要加tag的文章id
foreach( $post_ids as $k => $post_id ){
wp_set_post_tags( $post_id, array('做网站','建站培训','视频教程') );//tag
}
}
add_action('edit_post','naruco_mod_tags');
在网站后台更新一次任意一篇日志就可以实现批量添加TAG 标签效果。
本作品采用 知识共享署名-相同方式共享 4.0 国际许可协议 进行许可。