diff --git a/src/wp-content/themes/twentyfourteen/functions.php b/src/wp-content/themes/twentyfourteen/functions.php
index 44280fdc66..7363c700c3 100644
|
a
|
b
|
if ( ! function_exists( 'twentyfourteen_setup' ) ) : |
| 77 | 77 | twentyfourteen_font_url() |
| 78 | 78 | ); |
| 79 | 79 | add_editor_style( array( 'css/editor-style.css', $font_stylesheet, 'genericons/genericons.css' ) ); |
| | 80 | // Add theme support for the title tag. |
| | 81 | add_theme_support( 'title-tag' ); |
| 80 | 82 | |
| 81 | 83 | // Load regular editor styles into the new block-based editor. |
| 82 | 84 | add_theme_support( 'editor-styles' ); |
| … |
… |
if ( ! function_exists( 'is_customize_preview' ) ) : |
| 729 | 731 | return ( $wp_customize instanceof WP_Customize_Manager ) && $wp_customize->is_preview(); |
| 730 | 732 | } |
| 731 | 733 | endif; |
| | 734 | |