Home / Change Editor Default Image Size
Duplicate Snippet

Embed Snippet on Your Site

Change Editor Default Image Size

Set the default image size to full instead of large in the block editor.

10+
Code Preview
php
<?php
add_filter( 'block_editor_settings_all', function ( $settings, $context ) {
	// The default image size when added in the block editor.
	$settings['imageDefaultSize'] = 'full';
	return $settings;
}, 10, 2 );

Comments

Add a Comment