wp_link_pages_link

wp_link_pages_link

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: filter

See hook in core

Displaying hooks found in version: wordpress-6.4.3

apply_filters('wp_link_pages_link') is found 3 times:

  • /wp-includes/post-template.php line 994
    				 *
    				 * @param string $link The page number HTML output.
    				 * @param int    $i    Page number for paginated posts' page links.
    				 */
    				$link = apply_filters( 'wp_link_pages_link', $link, $i );
    
    				// Use the custom links separator beginning with the second link.
    				$output .= ( 1 === $i ) ? ' ' : $parsed_args['separator'];
    				$output .= $link;
    			}
    			$output .= $parsed_args['after'];
    
  • /wp-includes/post-template.php line 1008

    if ( $prev > 0 ) {
    $link = _wp_link_page( $prev ) . $parsed_args[‘link_before’] . $parsed_args[‘previouspagelink’] . $parsed_args[‘link_after’] . ‘‘;

    /** This filter is documented in wp-includes/post-template.php */
    $output .= apply_filters( ‘wp_link_pages_link’, $link, $prev );
    }
    $next = $page + 1;
    if ( $next <= $numpages ) { if ( $prev ) { $output .= $parsed_args['separator']; } [/php]

  • /wp-includes/post-template.php line 1018
    				}
    				$link = _wp_link_page( $next ) . $parsed_args['link_before'] . $parsed_args['nextpagelink'] . $parsed_args['link_after'] . '</a>';
    
    				/** This filter is documented in wp-includes/post-template.php */
    				$output .= apply_filters( 'wp_link_pages_link', $link, $next );
    			}
    			$output .= $parsed_args['after'];
    		}
    	}
    
    	/**