How to delete old posts’ edits to save space?

You’ll need to edit wp-config.php.

To set posts to retain a set number of revisions:

define('WP_POST_REVISIONS', 3);

To disable post revisions completely:

define('WP_POST_REVISIONS', false );