From 6bd2392ecc9679052ef1c0a8a944297a6d5a69ee Mon Sep 17 00:00:00 2001 From: audrasjb Date: Wed, 21 Jun 2023 20:50:22 +0000 Subject: [PATCH] Administration: Replace Tagline option placeholder with a description. As placeholders may introduce confusion about whether the example is the input's predefined value or not, this changeset moves the "Just another WordPress site" historic tagline as an example quoted in the field's description. Props Cybr, audrasjb, sabernhardt, pavanpatil1, tb1909. Fixes #57675. Built from https://develop.svn.wordpress.org/trunk@55969 git-svn-id: http://core.svn.wordpress.org/trunk@55481 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-admin/options-general.php | 10 ++++++++-- wp-includes/version.php | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/wp-admin/options-general.php b/wp-admin/options-general.php index 16156860e2..5642b461be 100644 --- a/wp-admin/options-general.php +++ b/wp-admin/options-general.php @@ -84,11 +84,17 @@ if ( is_multisite() ) { /* translators: %s: Network title. */ $sample_tagline = sprintf( __( 'Just another %s site' ), get_network()->site_name ); } +$tagline_description = sprintf( + '%1$s %2$s', + __( 'In a few words, explain what this site is about.' ), + /* translators: %s: Site tagline example. */ + sprintf( __( 'Example: “%s.”' ), $sample_tagline ) +); ?> - -

+ +