Make WordPress Core


Ignore:
Timestamp:
10/17/2017 08:14:56 PM (7 years ago)
Author:
westonruter
Message:

Customize: Allow post/page stubs to be edited in WP Admin as "customization drafts" when changeset is saved as draft or scheduled.

  • Update stubs to have draft status when changeset is saved as draft, instead of preventing auto-draft garbage collection by giving them a far-future post_date.
  • Show notice in publish metabox when editing a customization draft indicating that it will be published automatically with its changeset; a link to Customizer is included.
  • Include a new "Customization Draft" display post state in the post list table.
  • Disconnect stubs from their changesets when they are updated with a status other than "Draft".
  • Trash customization drafts when their related changeset is trashed or deleted.
  • Add a _customize_changeset_uuid postmeta to stubs to link them with their associated changeset.
  • Include customize_changeset_uuid as context when requesting to insert a new auto-draft.

Props westonruter, melchoyce.
See #39896, #39752, #34923.
Fixes #42220.

File:
1 edited

Legend:

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

    r41684 r41887  
    17371737    if ( 'private' == $post->post_status && 'private' != $post_status )
    17381738        $post_states['private'] = __('Private');
    1739     if ( 'draft' == $post->post_status && 'draft' != $post_status )
    1740         $post_states['draft'] = __('Draft');
     1739    if ( 'draft' === $post->post_status ) {
     1740        if ( get_post_meta( $post->ID, '_customize_changeset_uuid', true ) ) {
     1741            $post_states[] = __( 'Customization Draft' );
     1742        } elseif ( 'draft' !== $post_status ) {
     1743            $post_states['draft'] = __( 'Draft' );
     1744        }
     1745    } elseif ( 'trash' === $post->post_status && get_post_meta( $post->ID, '_customize_changeset_uuid', true ) ) {
     1746        $post_states[] = __( 'Customization Draft' );
     1747    }
    17411748    if ( 'pending' == $post->post_status && 'pending' != $post_status )
    17421749        $post_states['pending'] = _x('Pending', 'post status');
Note: See TracChangeset for help on using the changeset viewer.