wordpress attachment.php,WordPress函数wp_delete_attachment()

描述:

代码实现通过id进行删除附件

用法:

参数:

$attachmentid

(integer) (必填) 要删除的附件ID

默认值: None

$force_delete

(bool) (可选) 是否绕过回收站并强制删除

默认值: false

源文件:

/**

* Trash or delete an attachment.

*

* When an attachment is permanently deleted, the file will also be removed.

* Deletion removes all post meta fields, taxonomy, comments, etc. associated

* with the attachment (except the main post).

*

* The attachment is moved to the trash instead of permanently deleted unless trash

* for media is disabled, item is already in the trash, or $force_delete is true.

*

* @since 2.0.0

*

* @global wpdb $wpdb WordPress database abstraction object.

*

* @param int $post_id Attachment ID.

* @param bool $force_delete Optional. Whether to bypass trash and force deletion.

* Default false.

* @return mixed False on failure. Post data on success.

*/

function wp_delete_attachment( $post_id, $force_delete = false ) {

global $wpdb;

if ( !$post = $wpdb->get_row( $wpdb->prepare("SELECT * FROM $wpdb->posts WHERE ID = %d", $post_id) ) )

return $post;

if ( 'attachment' != $post->post_type )

return false;

if ( !$force_delete && EMPTY_TRASH_DAYS && MEDIA_TRASH && 'trash' != $post->post_status )

return wp_trash_post( $post_id );

delete_post_meta($post_id, '_wp_trash_meta_status');

delete_post_meta($post_id, '_wp_trash_meta_time');

$meta = wp_get_attachment_metadata( $post_id );

$backup_sizes = get_post_meta( $post->ID, '_wp_attachment_backup_sizes', true );

$file = get_attached_file( $post_id );

if ( is_multisite() )

delete_transient( 'dirsize_cache' );

/**

* Fires before an attachment is deleted, at the start of wp_delete_attachment().

*

* @since 2.0.0

*

* @param int $post_id Attachment ID.

*/

do_action( 'delete_attachment', $post_id );

wp_delete_object_term_relationships($post_id, array('category', 'post_tag'));

wp_delete_object_term_relationships($post_id, get_object_taxonomies($post->post_type));

// Delete all for any posts.

delete_metadata( 'post', null, '_thumbnail_id', $post_id, true );

$comment_ids = $wpdb->get_col( $wpdb->prepare( "SELECT comment_ID FROM $wpdb->comments WHERE comment_post_ID = %d", $post_id ));

foreach ( $comment_ids as $comment_id )

wp_delete_comment( $comment_id, true );

$post_meta_ids = $wpdb->get_col( $wpdb->prepare( "SELECT meta_id FROM $wpdb->postmeta WHERE post_id = %d ", $post_id ));

foreach ( $post_meta_ids as $mid )

delete_metadata_by_mid( 'post', $mid );

/** This action is documented in wp-includes/post.php */

do_action( 'delete_post', $post_id );

$result = $wpdb->delete( $wpdb->posts, array( 'ID' => $post_id ) );

if ( ! $result ) {

return false;

}

/** This action is documented in wp-includes/post.php */

do_action( 'deleted_post', $post_id );

$uploadpath = wp_upload_dir();

if ( ! empty($meta['thumb']) ) {

// Don't delete the thumb if another attachment uses it.

if (! $wpdb->get_row( $wpdb->prepare( "SELECT meta_id FROM $wpdb->postmeta WHERE meta_key = '_wp_attachment_metadata' AND meta_value LIKE %s AND post_id <> %d", '%' . $wpdb->esc_like( $meta['thumb'] ) . '%', $post_id)) ) {

$thumbfile = str_replace(basename($file), $meta['thumb'], $file);

/** This filter is documented in wp-includes/functions.php */

$thumbfile = apply_filters( 'wp_delete_file', $thumbfile );

@ unlink( path_join($uploadpath['basedir'], $thumbfile) );

}

}

// Remove intermediate and backup images if there are any.

if ( isset( $meta['sizes'] ) && is_array( $meta['sizes'] ) ) {

foreach ( $meta['sizes'] as $size => $sizeinfo ) {

$intermediate_file = str_replace( basename( $file ), $sizeinfo['file'], $file );

/** This filter is documented in wp-includes/functions.php */

$intermediate_file = apply_filters( 'wp_delete_file', $intermediate_file );

@ unlink( path_join( $uploadpath['basedir'], $intermediate_file ) );

}

}

if ( is_array($backup_sizes) ) {

foreach ( $backup_sizes as $size ) {

$del_file = path_join( dirname($meta['file']), $size['file'] );

/** This filter is documented in wp-includes/functions.php */

$del_file = apply_filters( 'wp_delete_file', $del_file );

@ unlink( path_join($uploadpath['basedir'], $del_file) );

}

}

wp_delete_file( $file );

clean_post_cache( $post );

return $post;

}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值