Changeset 45031
- Timestamp:
- 03/27/2019 02:23:24 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r44809 r45031 2190 2190 * @global WP_Rewrite $wp_rewrite 2191 2191 * 2192 * @param int $pagenum Optional. Page ID. Default 1.2192 * @param int $pagenum Optional. Page number. Default 1. 2193 2193 * @param bool $escape Optional. Whether to escape the URL for display, with esc_url(). Defaults to true. 2194 2194 * Otherwise, prepares the URL with esc_url_raw(). … … 2250 2250 * @since 2.5.0 2251 2251 * 2252 * @param string $result The page number link. 2253 */ 2254 $result = apply_filters( 'get_pagenum_link', $result ); 2252 * @param string $result The page number link. 2253 * @param int $pagenum The page number. 2254 */ 2255 $result = apply_filters( 'get_pagenum_link', $result, $pagenum ); 2255 2256 2256 2257 if ( $escape ) {
Note: See TracChangeset
for help on using the changeset viewer.