wp-content/themes/twentytwenty/functions.php:434Enqueue supplemental block editor styles.
function twentytwenty_block_editor_styles() { $theme_version = wp_get_theme()->get( 'Version' ); // Enqueue the editor styles. wp_enqueue_style( 'twentytwenty-block-editor-styles', get_theme_file_uri( '/assets/css/editor-style-block.css' ), array(), $theme_version, 'all' ); wp_style_add_data( 'twentytwenty-block-editor-styles', 'rtl', 'replace' ); // Add inline style from the Customizer. $customizer_css = twentytwenty_get_customizer_css( 'block-editor' ); if ( $customizer_css ) { wp_add_inline_style( 'twentytwenty-block-editor-styles', $customizer_css ); } // Enqueue the CSS file for the variable font, Inter. wp_enqueue_style( 'twentytwenty-fonts', get_theme_file_uri( '/assets/css/font-inter.css' ), array(), $theme_version, 'all' ); // Add inline style for non-latin fonts. $custom_css = TwentyTwenty_Non_Latin_Languages::get_non_latin_css( 'block-editor' ); if ( $custom_css ) { wp_add_inline_style( 'twentytwenty-block-editor-styles', $custom_css ); }}Introduced in Twenty Twenty 2.6 Enqueue the CSS file for the variable font.. Unchanged from 6.7.7 through 7.1.0.
Signature, return type and hooks compared across 5 parsed releases.
src/wp-content/themes/twentytwenty/functions.php, and regenerated for each WordPress release so it tracks the code rather than a snapshot of it.