an
groups-icon

Delete attachment

Wait a minute... This content is very very old. We no longer sell or support this theme version. New Topics
  • Version 9
    Mickael Flaszenski
    0 points
    Beginner

    Hi,
    For delete your attachement at the post
    Copy past this in file function.php :

    function delete_attachments($post_id) {
    	$args = array(
    		'post_type' => 'attachment',
    		'numberposts' => -1,
    		'post_status' => null,
    		'post_parent' => $post_id
    	);
    	$attachments = get_posts($args);
    	
    	if ($attachments) {
    		foreach($attachments as $attachment) {
    			wp_delete_attachment($attachment->ID, true);
    			
    		}
    	}
    }
    
    add_action('before_delete_post', 'delete_attachments');

    And if you have idea for delete attachment just for listing say me.
    I tried ‘post_type’ =>’listing’, but not work

    May 21, 2014 at 9:26 am
  • Mark Fail
    11,845 points
    Platinum User
    Bronze User Silver User Gold User Platinum User Helpful Award Fast Responder Thank You Coffee Villian Award Video Testimonial
    Members Only Content

    This reply is for PremiumPress customers only.

    Login Now
    May 21, 2014 at 12:27 pm
  • Mickael Flaszenski
    0 points
    Beginner
    Members Only Content

    This reply is for PremiumPress customers only.

    Login Now
    May 21, 2014 at 5:08 pm

388

Views

2

Replies