Posts: Remove the slug from Quick Edit for posts that are not is_post_type_viewable().

This is a followup to [43728], which added the same check, but using the `publicly_queryable` option. This behaviour is incorrect for `_builtin` post types, which go by the logic in `is_post_type_viewable()`, instead.

See #43278.

Built from https://develop.svn.wordpress.org/branches/5.0@43855


git-svn-id: http://core.svn.wordpress.org/branches/5.0@43684 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Gary Pendergast 2018-11-01 02:35:46 +00:00
parent eb4031a209
commit 049d3a6db8
2 changed files with 3 additions and 3 deletions

View File

@ -1426,7 +1426,7 @@ class WP_Posts_List_Table extends WP_List_Table {
<span class="input-text-wrap"><input type="text" name="post_title" class="ptitle" value="" /></span>
</label>
<?php if ( $post_type_object->publicly_queryable ) : // publicly_queryable check ?>
<?php if ( is_post_type_viewable( $screen->post_type ) ) : // is_post_type_viewable check ?>
<label>
<span class="title"><?php _e( 'Slug' ); ?></span>
@ -1434,7 +1434,7 @@ class WP_Posts_List_Table extends WP_List_Table {
</label>
<?php
endif; // publicly_queryable check
endif; // is_post_type_viewable check
endif; // $bulk
endif; // post_type_supports title
?>

View File

@ -4,7 +4,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.0-beta2-43854';
$wp_version = '5.0-beta2-43855';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.