- Timestamp:
- 05/16/2020 06:40:52 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-posts-list-table.php
r47550 r47808 1191 1191 foreach ( $terms as $t ) { 1192 1192 $posts_in_term_qv = array(); 1193 if ( 'post' != $post->post_type ) {1193 if ( 'post' !== $post->post_type ) { 1194 1194 $posts_in_term_qv['post_type'] = $post->post_type; 1195 1195 } … … 1336 1336 $title = _draft_or_post_title(); 1337 1337 1338 if ( $can_edit_post && 'trash' != $post->post_status ) {1338 if ( $can_edit_post && 'trash' !== $post->post_status ) { 1339 1339 $actions['edit'] = sprintf( 1340 1340 '<a href="%s" aria-label="%s">%s</a>', … … 1396 1396 ); 1397 1397 } 1398 } elseif ( 'trash' != $post->post_status ) {1398 } elseif ( 'trash' !== $post->post_status ) { 1399 1399 $actions['view'] = sprintf( 1400 1400 '<a href="%s" rel="bookmark" aria-label="%s">%s</a>',
Note: See TracChangeset
for help on using the changeset viewer.