Index: wp-includes/post-template.php
===================================================================
--- wp-includes/post-template.php	(revision 38587)
+++ wp-includes/post-template.php	(revision )
@@ -1078,6 +1078,8 @@
 	);
 
 	$r = wp_parse_args( $args, $defaults );
+	if ( ! ( is_admin() && 'options-reading' == get_current_screen()->base ) )
+		$r = apply_filters( 'wp_dropdown_pages_args', $r );
 
 	$pages = get_pages( $r );
 	$output = '';
@@ -1171,6 +1173,7 @@
 	);
 
 	$r = wp_parse_args( $args, $defaults );
+	$r = apply_filters( 'wp_list_pages_args', $r );
 
 	if ( ! in_array( $r['item_spacing'], array( 'preserve', 'discard' ), true ) ) {
 		// invalid value, fall back to default.
