src/wp-admin/custom-background.php | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/wp-admin/custom-background.php b/src/wp-admin/custom-background.php
index ce37b5301e..3576cb22e9 100644
|
a
|
b
|
class Custom_Background { |
| 230 | 230 | <p> |
| 231 | 231 | <?php |
| 232 | 232 | printf( |
| | 233 | /* translators: 1: link to customize.php */ |
| 233 | 234 | __( 'You can now manage and live-preview Custom Backgrounds in the <a href="%1$s">Customizer</a>.' ), |
| 234 | 235 | admin_url( 'customize.php?autofocus[control]=background_image' ) |
| 235 | 236 | ); |
| … |
… |
class Custom_Background { |
| 240 | 241 | |
| 241 | 242 | <?php if ( ! empty( $this->updated ) ) { ?> |
| 242 | 243 | <div id="message" class="updated"> |
| 243 | | <p><?php printf( __( 'Background updated. <a href="%s">Visit your site</a> to see how it looks.' ), home_url( '/' ) ); ?></p> |
| | 244 | <p><?php /* translators: %s: link to Home Page */printf( __( 'Background updated. <a href="%s">Visit your site</a> to see how it looks.' ), home_url( '/' ) ); ?></p> |
| 244 | 245 | </div> |
| 245 | 246 | <?php } ?> |
| 246 | 247 | |
| … |
… |
class Custom_Background { |
| 347 | 348 | |
| 348 | 349 | <?php |
| 349 | 350 | $background_position = sprintf( |
| | 351 | /* translators: 1: background position x 2: background position y */ |
| 350 | 352 | '%s %s', |
| 351 | 353 | get_theme_mod( 'background_position_x', get_theme_support( 'custom-background', 'default-position-x' ) ), |
| 352 | 354 | get_theme_mod( 'background_position_y', get_theme_support( 'custom-background', 'default-position-y' ) ) |