Ticket #39109: 39109.patch
| File 39109.patch, 763 bytes (added by , 9 years ago) |
|---|
-
wp-content/themes/twentyseventeen/functions.php
103 103 */ 104 104 add_editor_style( array( 'assets/css/editor-style.css', twentyseventeen_fonts_url() ) ); 105 105 106 add_theme_support( 'starter-content',array(106 $starter_content = array( 107 107 'widgets' => array( 108 108 'sidebar-1' => array( 109 109 'text_business_info', … … 186 186 ), 187 187 ), 188 188 ), 189 ) ); 189 ); 190 191 add_theme_support( 'starter-content', apply_filters( 'twentyseventeen_starter_content', $starter_content ) ); 190 192 } 191 193 add_action( 'after_setup_theme', 'twentyseventeen_setup' ); 192 194