diff --git src/wp-content/themes/twentytwentyfive/functions.php src/wp-content/themes/twentytwentyfive/functions.php
index 3805c48052..577c204359 100644
|
|
|
if ( ! function_exists( 'twentytwentyfive_editor_style' ) ) : |
| 39 | 39 | endif; |
| 40 | 40 | add_action( 'after_setup_theme', 'twentytwentyfive_editor_style' ); |
| 41 | 41 | |
| | 42 | // Enqueues author-bio-wrap.css in the editors. |
| | 43 | if ( ! function_exists( 'twentytwentyfive_author_bio_wrap' ) ) : |
| | 44 | /** |
| | 45 | * Enqueues author-bio-wrap.css in the editors. |
| | 46 | * |
| | 47 | * @since Twenty Twenty-Five 1.3 |
| | 48 | * |
| | 49 | * @return void |
| | 50 | */ |
| | 51 | function twentytwentyfive_author_bio_wrap() { |
| | 52 | add_editor_style( 'assets/css/author-bio-wrap.css' ); |
| | 53 | } |
| | 54 | endif; |
| | 55 | add_action( 'after_setup_theme', 'twentytwentyfive_author_bio_wrap' ); |
| | 56 | |
| 42 | 57 | // Enqueues style.css on the front. |
| 43 | 58 | if ( ! function_exists( 'twentytwentyfive_enqueue_styles' ) ) : |
| 44 | 59 | /** |