Changeset 31433 for branches/4.1/src/wp-includes/general-template.php
- Timestamp:
- 02/12/2015 02:19:44 AM (10 years ago)
- Location:
- branches/4.1
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/4.1
- Property svn:mergeinfo changed
/trunk merged: 31203,31432
- Property svn:mergeinfo changed
-
branches/4.1/src/wp-includes/general-template.php
r30864 r31433 2588 2588 global $wp_query, $wp_rewrite; 2589 2589 2590 $total = ( isset( $wp_query->max_num_pages ) ) ? $wp_query->max_num_pages : 1; 2591 $current = ( get_query_var( 'paged' ) ) ? intval( get_query_var( 'paged' ) ) : 1; 2590 // Setting up default values based on the current URL. 2592 2591 $pagenum_link = html_entity_decode( get_pagenum_link() ); 2593 $query_args = array();2594 2592 $url_parts = explode( '?', $pagenum_link ); 2595 2593 2596 if ( isset( $url_parts[1] ) ) {2597 wp_parse_str( $url_parts[1], $query_args );2598 $query_args = urlencode_deep( $query_args );2599 } 2600 2601 $pagenum_link = remove_query_arg( array_keys( $query_args ), $pagenum_link );2602 $pagenum_link = trailingslashit( $pagenum_link ) . '%_%'; 2603 2594 // Get max pages and current page out of the current query, if available. 2595 $total = isset( $wp_query->max_num_pages ) ? $wp_query->max_num_pages : 1; 2596 $current = get_query_var( 'paged' ) ? intval( get_query_var( 'paged' ) ) : 1; 2597 2598 // Append the format placeholder to the base URL. 2599 $pagenum_link = trailingslashit( $url_parts[0] ) . '%_%'; 2600 2601 // URL base depends on permalink settings. 2604 2602 $format = $wp_rewrite->using_index_permalinks() && ! strpos( $pagenum_link, 'index.php' ) ? 'index.php/' : ''; 2605 2603 $format .= $wp_rewrite->using_permalinks() ? user_trailingslashit( $wp_rewrite->pagination_base . '/%#%', 'paged' ) : '?paged=%#%'; … … 2617 2615 'mid_size' => 2, 2618 2616 'type' => 'plain', 2619 'add_args' => $query_args, // array of query args to add2617 'add_args' => array(), // array of query args to add 2620 2618 'add_fragment' => '', 2621 2619 'before_page_number' => '', … … 2625 2623 $args = wp_parse_args( $args, $defaults ); 2626 2624 2625 if ( ! is_array( $args['add_args'] ) ) { 2626 $args['add_args'] = array(); 2627 } 2628 2629 // Merge additional query vars found in the original URL into 'add_args' array. 2630 if ( isset( $url_parts[1] ) ) { 2631 // Find the format argument. 2632 $format_query = parse_url( str_replace( '%_%', $args['format'], $args['base'] ), PHP_URL_QUERY ); 2633 wp_parse_str( $format_query, $format_arg ); 2634 2635 // Remove the format argument from the array of query arguments, to avoid overwriting custom format. 2636 wp_parse_str( remove_query_arg( array_keys( $format_arg ), $url_parts[1] ), $query_args ); 2637 $args['add_args'] = array_merge( $args['add_args'], urlencode_deep( $query_args ) ); 2638 } 2639 2627 2640 // Who knows what else people pass in $args 2628 2641 $total = (int) $args['total']; … … 2639 2652 $mid_size = 2; 2640 2653 } 2641 $add_args = is_array( $args['add_args'] ) ? $args['add_args'] : false;2654 $add_args = $args['add_args']; 2642 2655 $r = ''; 2643 2656 $page_links = array();
Note: See TracChangeset
for help on using the changeset viewer.