Make WordPress Core

Ticket #39109: 39109.patch

File 39109.patch, 763 bytes (added by sanket.parmar, 9 years ago)
  • wp-content/themes/twentyseventeen/functions.php

     
    103103         */
    104104        add_editor_style( array( 'assets/css/editor-style.css', twentyseventeen_fonts_url() ) );
    105105
    106         add_theme_support( 'starter-content', array(
     106        $starter_content = array(
    107107                'widgets' => array(
    108108                        'sidebar-1' => array(
    109109                                'text_business_info',
     
    186186                                ),
    187187                        ),
    188188                ),
    189         ) );
     189        );
     190
     191        add_theme_support( 'starter-content', apply_filters( 'twentyseventeen_starter_content', $starter_content ) );
    190192}
    191193add_action( 'after_setup_theme', 'twentyseventeen_setup' );
    192194