Make WordPress Core

Ticket #41410: 41410.3.diff

File 41410.3.diff, 1.7 KB (added by westonruter, 8 years ago)
  • src/wp-includes/theme.php

    diff --git src/wp-includes/theme.php src/wp-includes/theme.php
    index e5cdd952b8..578c988628 100644
    function get_theme_starter_content() { 
    19481948                        'text_business_info' => array( 'text', array(
    19491949                                'title' => _x( 'Find Us', 'Theme starter content' ),
    19501950                                'text' => join( '', array(
    1951                                         '<p><strong>' . _x( 'Address', 'Theme starter content' ) . '</strong><br />',
    1952                                         _x( '123 Main Street', 'Theme starter content' ) . '<br />' . _x( 'New York, NY 10001', 'Theme starter content' ) . '</p>',
    1953                                         '<p><strong>' . _x( 'Hours', 'Theme starter content' ) . '</strong><br />',
    1954                                         _x( 'Monday&mdash;Friday: 9:00AM&ndash;5:00PM', 'Theme starter content' ) . '<br />' . _x( 'Saturday &amp; Sunday: 11:00AM&ndash;3:00PM', 'Theme starter content' ) . '</p>'
     1951                                        '<strong>' . _x( 'Address', 'Theme starter content' ) . "</strong>\n",
     1952                                        _x( '123 Main Street', 'Theme starter content' ) . "\n" . _x( 'New York, NY 10001', 'Theme starter content' ) . "\n\n",
     1953                                        '<strong>' . _x( 'Hours', 'Theme starter content' ) . "</strong>\n",
     1954                                        _x( 'Monday&mdash;Friday: 9:00AM&ndash;5:00PM', 'Theme starter content' ) . "\n" . _x( 'Saturday &amp; Sunday: 11:00AM&ndash;3:00PM', 'Theme starter content' )
    19551955                                ) ),
     1956                                'filter' => true,
     1957                                'visual' => true,
    19561958                        ) ),
    19571959                        'text_about' => array( 'text', array(
    19581960                                'title' => _x( 'About This Site', 'Theme starter content' ),
    19591961                                'text' => _x( 'This may be a good place to introduce yourself and your site or include some credits.', 'Theme starter content' ),
     1962                                'filter' => true,
     1963                                'visual' => true,
    19601964                        ) ),
    19611965                        'archives' => array( 'archives', array(
    19621966                                'title' => _x( 'Archives', 'Theme starter content' ),