Make WordPress Core


Ignore:
Timestamp:
01/09/2026 04:26:02 AM (8 weeks 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/class-wp-theme.php

    r61299 r61457  
    516516            }
    517517            // Set the parent. Pass the current instance so we can do the checks above and assess errors.
    518             $this->parent = new WP_Theme( $this->template, isset( $theme_root_template ) ? $theme_root_template : $this->theme_root, $this );
     518            $this->parent = new WP_Theme( $this->template, $theme_root_template ?? $this->theme_root, $this );
    519519        }
    520520
     
    777777     */
    778778    public function parent() {
    779         return isset( $this->parent ) ? $this->parent : false;
     779        return $this->parent ?? false;
    780780    }
    781781
     
    13981398
    13991399        $post_templates = $this->get_post_templates();
    1400         $post_templates = isset( $post_templates[ $post_type ] ) ? $post_templates[ $post_type ] : array();
     1400        $post_templates = $post_templates[ $post_type ] ?? array();
    14011401
    14021402        /**
Note: See TracChangeset for help on using the changeset viewer.