diff --git src/wp-includes/theme.php src/wp-includes/theme.php
index e5cdd952b8..578c988628 100644
|
|
function get_theme_starter_content() { |
1948 | 1948 | 'text_business_info' => array( 'text', array( |
1949 | 1949 | 'title' => _x( 'Find Us', 'Theme starter content' ), |
1950 | 1950 | '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—Friday: 9:00AM–5:00PM', 'Theme starter content' ) . '<br />' . _x( 'Saturday & Sunday: 11:00AM–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—Friday: 9:00AM–5:00PM', 'Theme starter content' ) . "\n" . _x( 'Saturday & Sunday: 11:00AM–3:00PM', 'Theme starter content' ) |
1955 | 1955 | ) ), |
| 1956 | 'filter' => true, |
| 1957 | 'visual' => true, |
1956 | 1958 | ) ), |
1957 | 1959 | 'text_about' => array( 'text', array( |
1958 | 1960 | 'title' => _x( 'About This Site', 'Theme starter content' ), |
1959 | 1961 | '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, |
1960 | 1964 | ) ), |
1961 | 1965 | 'archives' => array( 'archives', array( |
1962 | 1966 | 'title' => _x( 'Archives', 'Theme starter content' ), |