Answers for "wp delete old featured image programmatically"

0

wp delete old featured image programmatically

add_action( 'before_delete_post', 'wps_remove_attachment_with_post', 10 );
function wps_remove_attachment_with_post( $post_id ) {

    /** @var WP_Post[] $images */
    $images = get_attached_media( 'image', $post_id );

    foreach ( $images as $image ) {
        wp_delete_attachment( $image->ID, true );
    }
}
Posted by: Guest on January-14-2021

Code answers related to "wp delete old featured image programmatically"

Browse Popular Code Answers by Language