RTMediaMedia::delete_wordpress_attachment PHP Method

delete_wordpress_attachment() public method

Generic method to delete a media from wordpress media library ( other than by rtMedia )
    function delete_wordpress_attachment($id)
    {
        $media = $this->model->get(array('media_id' => $id), false, false);
        if ($media) {
            $this->delete($media[0]->id, true);
        }
    }