Changeset 41887 for trunk/src/wp-admin/includes/meta-boxes.php
- Timestamp:
- 10/17/2017 08:14:56 PM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/meta-boxes.php
r41763 r41887 222 222 </fieldset> 223 223 </div><?php // /misc-pub-section ?> 224 <?php endif; ?> 225 226 <?php if ( 'draft' === $post->post_status && get_post_meta( $post->ID, '_customize_changeset_uuid', true ) ) : ?> 227 <div class="notice notice-info notice-alt inline"> 228 <p> 229 <?php 230 echo sprintf( 231 /* translators: %s is the URL to the Customizer */ 232 __( 'This draft comes from your <a href="%s">unpublished customization changes</a>. You can edit, but there’s no need to publish now. It will be published automatically with those changes.' ), 233 esc_url( 234 add_query_arg( 235 'changeset_uuid', 236 rawurlencode( get_post_meta( $post->ID, '_customize_changeset_uuid', true ) ), 237 admin_url( 'customize.php' ) 238 ) 239 ) 240 ); 241 ?> 242 </p> 243 </div> 224 244 <?php endif; ?> 225 245
Note: See TracChangeset
for help on using the changeset viewer.