From 7cf788ba56b18107ed08885138778fe4db638792 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Fri, 5 Dec 2008 19:40:30 +0000 Subject: [PATCH] Add quick_edit_dropdown_pages_args filter git-svn-id: https://develop.svn.wordpress.org/trunk@10071 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/includes/template.php | 1 + 1 file changed, 1 insertion(+) diff --git a/wp-admin/includes/template.php b/wp-admin/includes/template.php index 2cbc6c3278..f5cc66743d 100644 --- a/wp-admin/includes/template.php +++ b/wp-admin/includes/template.php @@ -1050,6 +1050,7 @@ function inline_edit_row( $type ) { $dropdown_args = array('selected' => $post->post_parent, 'name' => 'post_parent', 'show_option_none' => __('Main Page (no parent)'), 'option_none_value' => 0); if ( $bulk ) $dropdown_args['show_option_no_change'] = __('- No Change -'); + $dropdown_args = apply_filters('quick_edit_dropdown_pages_args', $dropdown_args); wp_dropdown_pages($dropdown_args); ?>