wordpress删除文章时自动删除图片附件-kb88凯时官网登录

时间:2023-01-06
阅读:
免费资源网 - https://freexyz.cn/

wordpress在把文章移动到回收站后,图片附件和特色图片还会存在,这样就会占用资源,再手动一个个删除也很费事。

今天我们来实操一下同步删除。

百度一下,有文章介绍使用以下代码可以实现

/* 删除文章时删除图片附件 */
function delete_post_and_attachments($post_id) {
 global $wpdb;
 //删除特色图片
$thumbnails = $wpdb->get_results( "select * from $wpdb->postmeta where meta_key = '_thumbnail_id' and post_id = $post_id" );
 foreach ( $thumbnails as $thumbnail ) {
 wp_delete_attachment( $thumbnail->meta_value, true );
 }
 //删除图片附件
$attachments = $wpdb->get_results( "select * from $wpdb->posts where post_parent = $post_id and post_type = 'attachment'" );
 foreach ( $attachments as $attachment ) {
 wp_delete_attachment( $attachment->id, true );
 }
 $wpdb->query( "delete from $wpdb->postmeta where meta_key = '_thumbnail_id' and post_id = $post_id" );
 }
 add_action('before_delete_post', 'delete_post_and_attachments');
/* 删除文章时删除图片附件 over */

根据提示,我把这段代码复制到主题的functions.php文件中试一试。

先把文章里的某张图片和特色路径找出来

1、文章图片:/wp-content/uploads/2021/12/12018-g1lz0x.jpg

2、特色图片:/wp-content/uploads/2016/09/au7363-480×300.jpg

删除文章看看效果

特色图片和文章图片还在,所以这个代码没啥效果或者说对目前的wordpress5.75版本无效。

免费资源网 - https://freexyz.cn/
返回顶部
顶部
网站地图