Changeset 51125 for trunk/src/wp-includes/canonical.php
- Timestamp:
- 06/08/2021 11:31:46 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/canonical.php
r51118 r51125 28 28 * 29 29 * @since 2.3.0 30 * @since 5.8.0 Checks comment page count to limit pagination.31 30 * 32 31 * @global WP_Rewrite $wp_rewrite WordPress rewrite component. … … 506 505 || 'newest' !== $default_comments_page && $cpage > 1 ) 507 506 ) { 508 // Checks comment page count to limit pagination. 509 $per_page = get_option( 'comments_per_page' ); 510 511 // Get the total number of pages for comments. 512 $comments_total_pages = ceil( ( $wp_query->post->comment_count ) / $per_page ); 513 if ( $cpage <= $comments_total_pages ) { 514 $addl_path = ( ! empty( $addl_path ) ? trailingslashit( $addl_path ) : '' ); 515 $addl_path .= user_trailingslashit( $wp_rewrite->comments_pagination_base . '-' . $cpage, 'commentpaged' ); 516 } 507 $addl_path = ( ! empty( $addl_path ) ? trailingslashit( $addl_path ) : '' ); 508 $addl_path .= user_trailingslashit( $wp_rewrite->comments_pagination_base . '-' . $cpage, 'commentpaged' ); 517 509 518 510 $redirect['query'] = remove_query_arg( 'cpage', $redirect['query'] );
Note: See TracChangeset
for help on using the changeset viewer.