| 2191 | * Return navigation to next/previous post when applicable. |
| 2192 | * |
| 2193 | * @since 4.1.0 |
| 2194 | * |
| 2195 | * @param array $args { |
| 2196 | * Optional. Default post navigation arguments. |
| 2197 | * |
| 2198 | * @type string $prev_text Anchor text to display in the previous post link. |
| 2199 | * Default: `<span class="meta-nav">←</span> %title`. |
| 2200 | * @type string $next_text Anchor text to display in the next post link. |
| 2201 | * Default: `%title <span class="meta-nav">→</span>`. |
| 2202 | * } |
| 2203 | * @return string Markup for post links. |
| 2204 | */ |
| 2205 | function get_the_post_navigation( $args = array() ) { |
| 2206 | $args = wp_parse_args( $args, array( |
| 2207 | 'prev_text' => _x( '<span class="meta-nav">←</span> %title', 'Previous post link' ), |
| 2208 | 'next_text' => _x( '%title <span class="meta-nav">→</span>', 'Next post link' ), |
| 2209 | ) ); |
| 2210 | |
| 2211 | $navigation = ''; |
| 2212 | $previous = get_previous_post_link( '<div class="nav-previous">%link</div>', $args['prev_text'] ); |
| 2213 | $next = get_next_post_link( '<div class="nav-next">%link</div>', $args['next_text'] ); |
| 2214 | |
| 2215 | // Only add markup if there's somewhere to navigate to. |
| 2216 | if ( $next || $previous ) { |
| 2217 | $navigation = _navigation_markup( $next . $previous, 'post-navigation', __( 'Post navigation' ) ); |
| 2218 | } |
| 2219 | |
| 2220 | return $navigation; |
| 2221 | } |
| 2222 | |
| 2223 | /** |
| 2224 | * Display navigation to next/previous post when applicable. |
| 2225 | * |
| 2226 | * @since 4.1.0 |
| 2227 | * |
| 2228 | * @param array $args {@see get_the_post_navigation()} for available arguments. |
| 2229 | */ |
| 2230 | function the_post_navigation( $args = array() ) { |
| 2231 | echo get_the_post_navigation( $args ); |
| 2232 | } |
| 2233 | |
| 2234 | /** |
| 2235 | * Return navigation to next/previous set of posts when applicable. |
| 2236 | * |
| 2237 | * @since 4.1.0 |
| 2238 | * |
| 2239 | * @global WP_Query $wp_query WordPress Query object. |
| 2240 | * @param array $args { |
| 2241 | * Optional. Default paging navigation arguments. |
| 2242 | * |
| 2243 | * @type string $prev_text Anchor text to display in the previous posts link. |
| 2244 | * Default: `<span class="meta-nav">←</span> Older posts`. |
| 2245 | * @type string $next_text Anchor text to display in the next posts link. |
| 2246 | * Default: `Newer posts <span class="meta-nav">→</span>`. |
| 2247 | * } |
| 2248 | * @return string Markup for paging links. |
| 2249 | */ |
| 2250 | function get_the_paging_navigation( $args = array() ) { |
| 2251 | $navigation = ''; |
| 2252 | |
| 2253 | // Don't print empty markup if there's only one page. |
| 2254 | if ( $GLOBALS['wp_query']->max_num_pages > 1 ) { |
| 2255 | $args = wp_parse_args( $args, array( |
| 2256 | 'prev_text' => __( '<span class="meta-nav">←</span> Older posts' ), |
| 2257 | 'next_text' => __( 'Newer posts <span class="meta-nav">→</span>' ), |
| 2258 | ) ); |
| 2259 | |
| 2260 | $next_link = get_next_posts_link( $args['prev_text'] ); |
| 2261 | $prev_link = get_previous_posts_link( $args['next_text'] ); |
| 2262 | |
| 2263 | if ( $next_link ) { |
| 2264 | $navigation .= '<div class="nav-previous">' . $next_link . '</div>'; |
| 2265 | } |
| 2266 | |
| 2267 | if ( $prev_link ) { |
| 2268 | $navigation .= '<div class="nav-next">' . $prev_link . '</div>'; |
| 2269 | } |
| 2270 | |
| 2271 | $navigation = _navigation_markup( $navigation ); |
| 2272 | } |
| 2273 | |
| 2274 | return $navigation; |
| 2275 | } |
| 2276 | |
| 2277 | /** |
| 2278 | * Display navigation to next/previous set of posts when applicable. |
| 2279 | * |
| 2280 | * @since 4.1.0 |
| 2281 | * |
| 2282 | * @param array $args {@see get_the_paging_navigation()} for available arguments. |
| 2283 | * } |
| 2284 | */ |
| 2285 | function the_paging_navigation( $args = array() ) { |
| 2286 | echo get_the_paging_navigation( $args ); |
| 2287 | } |
| 2288 | |
| 2289 | /** |
| 2290 | * Return a paginated navigation to next/previous set of posts, |
| 2291 | * when applicable. |
| 2292 | * |
| 2293 | * @since 4.1.0 |
| 2294 | * |
| 2295 | * @param array $args { |
| 2296 | * Optional. Default pagination arguments. |
| 2297 | * |
| 2298 | * @type string $base URL to be used to create the paginated links. |
| 2299 | * Example: `http://example.com/all_posts.php%_%` |
| 2300 | * The `%_%` is required and will be replaced by the contents of the |
| 2301 | * 'format' argument. |
| 2302 | * Default: Current page number link with appended `%_%`. |
| 2303 | * @type string $format Used to replace the page number. Example: `?page=%#%` |
| 2304 | * The `%#%` is required and will be replaced with the page number. |
| 2305 | * Default: Current permalink format with appended `%#%`. |
| 2306 | * @type int $total The total amount of pages. Default: Value of 'max_num_pages' of current query. |
| 2307 | * @type int $current The current page number. Default: Value of 'paged' query var. |
| 2308 | * @type bool $prev_next Whether to include previous and next links. Default: true. |
| 2309 | * @type string $prev_text Anchor text to display in the previous posts link. Default: `← Previous`. |
| 2310 | * @type string $next_text Anchor text to display in the next posts link. Default: `Next →`. |
| 2311 | * @type bool $show_all Whether to show all pages. |
| 2312 | * Default: false, shows short list of the pages near the current page. |
| 2313 | * @type int $end_size Amount of numbers on either the start and the end list edges. Default: 1. |
| 2314 | * @type int $mid_size Amount of numbers to either side of current page but not including current page. |
| 2315 | * Default: 1. |
| 2316 | * @type array $add_args Query vars to be added to the links. Accepts an associative array of arguments. |
| 2317 | * Default: Empty array. |
| 2318 | * @type string $before_page_number Text to prepend to the anchor text. Default: Empty string. |
| 2319 | * @type string $after_page_number Text to append to the anchor text. Default: Empty string. |
| 2320 | * } |
| 2321 | * @return string Markup for pagination links. |
| 2322 | */ |
| 2323 | function get_the_pagination( $args = array() ) { |
| 2324 | $navigation = ''; |
| 2325 | |
| 2326 | // Don't print empty markup if there's only one page. |
| 2327 | if ( $GLOBALS['wp_query']->max_num_pages > 1 ) { |
| 2328 | $args = wp_parse_args( $args, array( |
| 2329 | 'mid_size' => 1, |
| 2330 | 'prev_text' => __( '← Previous' ), |
| 2331 | 'next_text' => __( 'Next →' ), |
| 2332 | ) ); |
| 2333 | // Make sure we get plain links, so we can work with it. |
| 2334 | $args['type'] = 'plain'; |
| 2335 | |
| 2336 | // Set up paginated links. |
| 2337 | $links = paginate_links( $args ); |
| 2338 | |
| 2339 | if ( $links ) { |
| 2340 | $navigation = _navigation_markup( $links, 'pagination' ); |
| 2341 | } |
| 2342 | } |
| 2343 | |
| 2344 | return $navigation; |
| 2345 | } |
| 2346 | |
| 2347 | /** |
| 2348 | * Display a paginated navigation to next/previous set of posts, |
| 2349 | * when applicable. |
| 2350 | * |
| 2351 | * @since 4.1.0 |
| 2352 | * |
| 2353 | * @param array $args {@see get_the_pagination()} for available arguments. |
| 2354 | */ |
| 2355 | function the_pagination( $args = array() ) { |
| 2356 | echo get_the_pagination( $args ); |
| 2357 | } |
| 2358 | |
| 2359 | /** |
| 2360 | * Wraps passed links in navigational markup. |
| 2361 | * |
| 2362 | * @since 4.1.0 |
| 2363 | * @access private |
| 2364 | * |
| 2365 | * @param string $links Navigational links. |
| 2366 | * @param string $class Optional. Custom class for nav element. Default: 'paging-navigation'. |
| 2367 | * @param string $screen_reader_text Optional. Screen reader text for nav element. Default: 'Posts navigation'. |
| 2368 | * @return string Navigation template tag. |
| 2369 | */ |
| 2370 | function _navigation_markup( $links, $class = 'paging-navigation', $screen_reader_text = '' ) { |
| 2371 | if ( empty( $screen_reader_text ) ) { |
| 2372 | $screen_reader_text = __( 'Posts navigation' ); |
| 2373 | } |
| 2374 | |
| 2375 | $template = ' |
| 2376 | <nav class="navigation %1$s" role="navigation"> |
| 2377 | <h1 class="screen-reader-text">%2$s</h1> |
| 2378 | <div class="nav-links">%3$s</div> |
| 2379 | </nav>'; |
| 2380 | |
| 2381 | return sprintf( $template, sanitize_html_class( $class ), esc_html( $screen_reader_text ), $links ); |
| 2382 | } |
| 2383 | |
| 2384 | /** |