Changeset 55427 for trunk/src/wp-content/themes/twentytwenty/classes/class-twentytwenty-non-latin-languages.php
- Timestamp:
- 02/27/2023 05:30:07 PM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwenty/classes/class-twentytwenty-non-latin-languages.php
r54314 r55427 26 26 * 27 27 * @param string $type Whether to return CSS for the "front-end", "block-editor", or "classic-editor". 28 * @return void28 * @return string|null Custom CSS, or null if not applicable. 29 29 */ 30 30 public static function get_non_latin_css( $type = 'front-end' ) { … … 106 106 // Return if the selected language has no fallback fonts. 107 107 if ( empty( $font_family[ $locale ] ) ) { 108 return ;108 return null; 109 109 } 110 110 … … 127 127 // Return if the specified type doesn't exist. 128 128 if ( empty( $elements[ $type ] ) ) { 129 return ;129 return null; 130 130 } 131 131
Note: See TracChangeset
for help on using the changeset viewer.