diff --git a/src/wp-content/themes/twentyfourteen/inc/template-tags.php b/src/wp-content/themes/twentyfourteen/inc/template-tags.php
index 7e48884089..26def1afc0 100644
a
|
b
|
if ( ! function_exists( 'twentyfourteen_paging_nav' ) ) : |
47 | 47 | 'total' => $wp_query->max_num_pages, |
48 | 48 | 'current' => $paged, |
49 | 49 | 'mid_size' => 1, |
50 | | 'add_args' => array_map( 'urlencode', $query_args ), |
| 50 | 'add_args' => urlencode_deep( $query_args ), |
51 | 51 | 'prev_text' => __( '← Previous', 'twentyfourteen' ), |
52 | 52 | 'next_text' => __( 'Next →', 'twentyfourteen' ), |
53 | 53 | ) |