mtv\wp\models\Post::clear_attachments PHP Method

clear_attachments() public method

# TODO: optimize with SQL
public clear_attachments ( )
    public function clear_attachments()
    {
        foreach ($this->get_attachments() as $attachment) {
            $attachment->post_parent = null;
            $attachment->menu_order = null;
            $attachment->save();
        }
    }