diff --git a/wp-includes/theme.php b/wp-includes/theme.php index e5cdd952b8..578c988628 100644 --- a/wp-includes/theme.php +++ b/wp-includes/theme.php @@ -1948,15 +1948,19 @@ function get_theme_starter_content() { 'text_business_info' => array( 'text', array( 'title' => _x( 'Find Us', 'Theme starter content' ), 'text' => join( '', array( - '

' . _x( 'Address', 'Theme starter content' ) . '
', - _x( '123 Main Street', 'Theme starter content' ) . '
' . _x( 'New York, NY 10001', 'Theme starter content' ) . '

', - '

' . _x( 'Hours', 'Theme starter content' ) . '
', - _x( 'Monday—Friday: 9:00AM–5:00PM', 'Theme starter content' ) . '
' . _x( 'Saturday & Sunday: 11:00AM–3:00PM', 'Theme starter content' ) . '

' + '' . _x( 'Address', 'Theme starter content' ) . "\n", + _x( '123 Main Street', 'Theme starter content' ) . "\n" . _x( 'New York, NY 10001', 'Theme starter content' ) . "\n\n", + '' . _x( 'Hours', 'Theme starter content' ) . "\n", + _x( 'Monday—Friday: 9:00AM–5:00PM', 'Theme starter content' ) . "\n" . _x( 'Saturday & Sunday: 11:00AM–3:00PM', 'Theme starter content' ) ) ), + 'filter' => true, + 'visual' => true, ) ), 'text_about' => array( 'text', array( 'title' => _x( 'About This Site', 'Theme starter content' ), 'text' => _x( 'This may be a good place to introduce yourself and your site or include some credits.', 'Theme starter content' ), + 'filter' => true, + 'visual' => true, ) ), 'archives' => array( 'archives', array( 'title' => _x( 'Archives', 'Theme starter content' ), diff --git a/wp-includes/version.php b/wp-includes/version.php index 242968c4de..f007e56413 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -4,7 +4,7 @@ * * @global string $wp_version */ -$wp_version = '4.8.1-beta1-41135'; +$wp_version = '4.8.1-beta1-41137'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.