Only show published items of custom post types in nav menu meta boxes. props duck_, fixes #13390.
git-svn-id: http://svn.automattic.com/wordpress/trunk@14631 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e01bcf8d2e
commit
d12cdce1b0
|
@ -951,6 +951,12 @@ function _wp_nav_menu_meta_box_object( $object = null ) {
|
|||
'orderby' => 'id',
|
||||
'order' => 'DESC',
|
||||
);
|
||||
|
||||
// custom post types should show only published items
|
||||
} else {
|
||||
$object->_default_query = array(
|
||||
'post_status' => 'publish',
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue