Add missing space between strings.
props rachelbaker. fixes #27597. Built from https://develop.svn.wordpress.org/trunk@27945 git-svn-id: http://core.svn.wordpress.org/trunk@27775 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
d4755ebea3
commit
522d984a8d
|
@ -856,7 +856,7 @@ final class WP_Customize_Header_Image_Control extends WP_Customize_Image_Control
|
|||
<p class="customizer-section-intro">
|
||||
<?php
|
||||
// @todo translate (and look to custom-header.php for inspiration)
|
||||
echo ( 'Personalize your site with your own header image.' );
|
||||
echo ( 'Personalize your site with your own header image.' ) . ' ';
|
||||
if ( $width && $height ) {
|
||||
printf( ( 'While you can crop images to your liking after clicking <strong>Add new</strong>, your theme recommends a header size of <strong>%d × %d</strong> pixels.' ), $width, $height );
|
||||
} elseif ( $width ) {
|
||||
|
|
Loading…
Reference in New Issue