Make WordPress Core


Ignore:
Timestamp:
01/09/2026 04:26:02 AM (2 months ago)
Author:
westonruter
Message:

Code Modernization: Use null coalescing operator instead of isset() ternaries in remaining core files.

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 [61456], [61455], [61454], [61453], [61445], [61444], [61443], [61442], [61436], [61435], [61434], [61403], [61433], [61432], [61431], [61430], [61429], [61424], [61404], [61403].

Props costdev, westonruter, jrf, SergeyBiryukov, swissspidy, hellofromTonya, marybaum, oglekler, dmsnell, chaion07, noisysocks, mukesh27.
See #63430.
Fixes #58874.

File:
1 edited

Legend:

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

    r61440 r61457  
    11051105function set_theme_mod( $name, $value ) {
    11061106    $mods      = get_theme_mods();
    1107     $old_value = isset( $mods[ $name ] ) ? $mods[ $name ] : false;
     1107    $old_value = $mods[ $name ] ?? false;
    11081108
    11091109    /**
     
    34293429    }
    34303430
    3431     return isset( $_wp_registered_theme_features[ $feature ] ) ? $_wp_registered_theme_features[ $feature ] : null;
     3431    return $_wp_registered_theme_features[ $feature ] ?? null;
    34323432}
    34333433
Note: See TracChangeset for help on using the changeset viewer.