screen_options() for 'show on screen' should look for show_ui post types, not public.

git-svn-id: http://svn.automattic.com/wordpress/trunk@15339 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
nacin 2010-06-27 08:38:06 +00:00
parent 93a08d4d6f
commit 6b2be08f6b

View File

@ -3736,7 +3736,7 @@ function screen_options($screen) {
case 'edit':
case 'edit-pages':
$post_type = 'post';
if ( isset($_GET['post_type']) && in_array( $_GET['post_type'], get_post_types( array('public' => true ) ) ) )
if ( isset($_GET['post_type']) && in_array( $_GET['post_type'], get_post_types( array('show_ui' => true ) ) ) )
$post_type = $_GET['post_type'];
$post_type_object = get_post_type_object($post_type);
$per_page_label = $post_type_object->labels->name;