wp_link_pages_link

wp_link_pages_link

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

See hook in core

Displaying hooks found in version: wordpress-6.7.2

apply_filters('wp_link_pages_link') is found 3 times:

  • /wp-includes/post-template.php line 998
    0994
    0995
    0996
    0997
    0998
    0999
    1000
    1001
    1002
    1003
    1004
         *
         * @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 1012

    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 1022
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
                }
                $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'];
        }
    }
     
    /**