[WordPress] 外掛分享: Post Media Cleanup

首頁外掛目錄 › Post Media Cleanup
全新外掛
安裝啟用
尚無評分
4 天前
最後更新
問題解決
WordPress 5.0+ PHP 7.4+ v1.0.0 上架:2026-07-12

外掛標籤

開發者團隊

⬇ 下載最新版 (v1.0.0) 或搜尋安裝

① 下載 ZIP → 後台「外掛 › 安裝外掛 › 上傳外掛」
② 後台搜尋「Post Media Cleanup」→ 直接安裝(推薦)
📦 歷史版本下載

原文外掛簡介

Post Media Cleanup removes orphaned media files from your server when you permanently delete a post.
When you permanently delete a post, this plugin automatically finds and removes:

Featured image
Images and files embedded in post content
PDFs and any linked files in content
All attachments uploaded directly to the post

Key Features

Only fires on permanent deletion — moving to trash is always safe
Skip Shared Media — never deletes a file used by another post
Works per post type — configure exactly which types trigger cleanup
Compatible with S3 and cloud storage
Multisite ready
Developer friendly — filter hooks to extend behaviour

For Developers
Add extra attachments to the deletion list:
add_filter( 'postmediaweb_attachment_ids_to_delete', function( $ids, $post_id ) {
$extra = get_post_meta( $post_id, 'my_custom_pdf', true );
if ( $extra ) $ids[] = (int) $extra;
return $ids;
}, 10, 2 );

Prevent a specific attachment from being deleted:
add_filter( 'postmediaweb_should_delete_attachment', function( $should, $att_id, $post_id ) {
if ( $att_id === 999 ) return false;
return $should;
}, 10, 3 );

延伸相關外掛

文章
Filter
Apply Filters
Mastodon