Make WordPress Core

Changeset 34004


Ignore:
Timestamp:
09/10/2015 05:35:17 PM (9 years ago)
Author:
wonderboymusic
Message:

Cleanup the text for Publish Settings > Publish in the edit-form-advanced help tab. Clarify that Private posts aren't hidden from editors and administrators.

Props sillybean.
Fixes #18418.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-form-advanced.php

    r33672 r34004  
    396396if ( 'post' == $post_type ) {
    397397    $publish_box = '<p>' . __('Several boxes on this screen contain settings for how your content will be published, including:') . '</p>';
    398     $publish_box .= '<ul><li>' . __('<strong>Publish</strong> &mdash; You can set the terms of publishing your post in the Publish box. For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post.') . '</li>';
     398    $publish_box .= '<ul><li>' . __( '<strong>Publish</strong> - ' ) .
     399        __( 'You can set the terms of publishing your post in the Publish box. ') .
     400        __( 'For Status, Visibility, and Publish (immediately), click on the Edit link to reveal more options. ') .
     401        __( 'Visibility includes options for password-protecting a post or making it stay at the top of your blog indefinitely (sticky). ' ) .
     402        __( 'Publish (immediately) allows you to set a future or past date and time, so you can schedule a post to be published in the future or backdate a post. ' ) .
     403        __( 'The Password protected option allows you to set an arbitrary password for each post. ' ) .
     404        __( 'The Private option hides the post from everyone except editors and administrators. ' ) .
     405    '</li>';
    399406
    400407    if ( current_theme_supports( 'post-formats' ) && post_type_supports( 'post', 'post-formats' ) ) {
Note: See TracChangeset for help on using the changeset viewer.