Make WordPress Core

Ticket #52314: 52314-alternate.diff

File 52314-alternate.diff, 597 bytes (added by sabernhardt, 2 years ago)

alternate option: keep existing Add New Post title, create the new Edit title when post is already published (even if untitled)

  • src/wp-admin/admin-header.php

     
    5757        $admin_title = sprintf( __( 'Recovery Mode — %s' ), $admin_title );
    5858}
    5959
     60if ( 'post' === $current_screen->base && 'add' !== $current_screen->action ) {
     61        /* translators: Editor admin screen title. %s: Post title. */
     62        $admin_title = sprintf( __( 'Edit “%s”' ), get_the_title() );
     63}
     64
    6065/**
    6166 * Filters the title tag content for an admin page.
    6267 *