433 | | // Enqueue the editor script. |
434 | | wp_enqueue_script( 'twentytwenty-block-editor-script', get_theme_file_uri( '/assets/js/editor-script-block.js' ), array( 'wp-blocks', 'wp-dom' ), wp_get_theme()->get( 'Version' ), true ); |
| 433 | // Enqueue the editor script and unregister the squared button block style. |
| 434 | if ( version_compare( $GLOBALS['wp_version'], '5.3', '<' ) ) { |
| 435 | wp_enqueue_script( 'twentytwenty-block-editor-script', get_theme_file_uri( '/assets/js/editor-script-block.js' ), array( 'wp-blocks', 'wp-dom' ), wp_get_theme()->get( 'Version' ), true ); |
| 436 | } |