Make WordPress Core


Ignore:
Timestamp:
08/03/2022 12:18:22 PM (2 years ago)
Author:
audrasjb
Message:

Administration: Change default site tagline to an empty string.

This changeset replaces the default "Just another WordPress site" tagline with an empty string for new installations. The reasoning is:

  1. Not all themes display the tagline;
  2. Not everyone changes the default tagline;
  3. When people don't see the tagline in their theme, they may not realize it is still visible in some places, like feeds.

The string "Just another WordPress site" and the related multisite string: "Just another {NETWORK} site" are now only used as a placeholder for the tagline admin option.

Props markjaquith, Denis-de-Bernardy, westi, RyanMurphy, kovshenin, SergeyBiryukov, chriscct7, tyxla, hyperbrand, karmatosed, lukecavanagh, melchoyce, boemedia, khag7, sabernhardt, audrasjb, peterwilsoncc, costdev, martinkrcho, rafiahmedd.
Fixes #6479.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/schema.php

    r53083 r53815  
    402402        'home'                            => $guessurl,
    403403        'blogname'                        => __( 'My Site' ),
    404         /* translators: Site tagline. */
    405         'blogdescription'                 => __( 'Just another WordPress site' ),
     404        'blogdescription'                 => '',
    406405        'users_can_register'              => 0,
    407406        'admin_email'                     => 'you@example.com',
     
    556555    // 3.0.0 multisite.
    557556    if ( is_multisite() ) {
    558         /* translators: %s: Network title. */
    559         $defaults['blogdescription']     = sprintf( __( 'Just another %s site' ), get_network()->site_name );
    560557        $defaults['permalink_structure'] = '/%year%/%monthnum%/%day%/%postname%/';
    561558    }
Note: See TracChangeset for help on using the changeset viewer.