Make WordPress Core


Ignore:
Timestamp:
02/09/2020 04:52:28 PM (5 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Use Yoda conditions where appropriate.

See #49222.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/menu.php

    r47198 r47219  
    121121    $ptype_obj = get_post_type_object( $ptype );
    122122    // Check if it should be a submenu.
    123     if ( $ptype_obj->show_in_menu !== true ) {
     123    if ( true !== $ptype_obj->show_in_menu ) {
    124124        continue;
    125125    }
Note: See TracChangeset for help on using the changeset viewer.