Changeset 62034
- Timestamp:
- 03/16/2026 09:54:06 PM (12 days ago)
- Location:
- trunk
- Files:
-
- 1 added
- 1 edited
-
src/wp-includes/link-template.php (modified) (1 diff)
-
tests/phpunit/tests/link/previousPosts.php (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/link-template.php
r61766 r62034 2650 2650 */ 2651 2651 function previous_posts( $display = true ) { 2652 $output = esc_url( get_previous_posts_page_link() ); 2652 $link = get_previous_posts_page_link(); 2653 $output = $link ? esc_url( $link ) : ''; 2653 2654 2654 2655 if ( $display ) {
Note: See TracChangeset
for help on using the changeset viewer.