Make WordPress Core


Ignore:
Timestamp:
01/09/2026 02:38:07 AM (5 months ago)
Author:
westonruter
Message:

Code Modernization: Menus, Template, XML-RPC: Use null coalescing operator instead of isset() ternaries.

Developed as a subset of https://github.com/WordPress/wordpress-develop/pull/10654
Initially developed in https://github.com/WordPress/wordpress-develop/pull/4886

Follow-up to [61453], [61445], [61444], [61443], [61442], [61436], [61435], [61434], [61403], [61433], [61432], [61431], [61430], [61429], [61424], [61404], [61403].

Props costdev, westonruter.
See #58874, #63430.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/general-template.php

    r61411 r61454  
    46594659
    46604660    // Get max pages and current page out of the current query, if available.
    4661     $total   = isset( $wp_query->max_num_pages ) ? $wp_query->max_num_pages : 1;
     4661    $total   = $wp_query->max_num_pages ?? 1;
    46624662    $current = get_query_var( 'paged' ) ? (int) get_query_var( 'paged' ) : 1;
    46634663
     
    46984698        // Find the format argument.
    46994699        $format       = explode( '?', str_replace( '%_%', $args['format'], $args['base'] ) );
    4700         $format_query = isset( $format[1] ) ? $format[1] : '';
     4700        $format_query = $format[1] ?? '';
    47014701        wp_parse_str( $format_query, $format_args );
    47024702
Note: See TracChangeset for help on using the changeset viewer.