- Timestamp:
- 01/06/2026 06:05:20 AM (3 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r61255 r61445 77 77 array( 78 78 'plural' => 'posts', 79 'screen' => isset( $args['screen'] ) ? $args['screen'] :null,79 'screen' => $args['screen'] ?? null, 80 80 ) 81 81 ); … … 532 532 } 533 533 534 $displayed_post_format = isset( $_GET['post_format'] ) ? $_GET['post_format'] :'';534 $displayed_post_format = $_GET['post_format'] ?? ''; 535 535 ?> 536 536 <label for="filter-by-format" class="screen-reader-text"> … … 1265 1265 <div class="post-com-count-wrapper"> 1266 1266 <?php 1267 $pending_comments = isset( $this->comment_pending_count[ $post->ID ] ) ? $this->comment_pending_count[ $post->ID ] :0;1267 $pending_comments = $this->comment_pending_count[ $post->ID ] ?? 0; 1268 1268 1269 1269 $this->comments_bubble( $post->ID, $pending_comments );
Note: See TracChangeset
for help on using the changeset viewer.