- Timestamp:
- 05/16/2020 06:40:52 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyfourteen/inc/featured-content.php
r47550 r47808 303 303 304 304 // Bail if term objects are unavailable. 305 if ( 'all' != $args['fields'] ) {305 if ( 'all' !== $args['fields'] ) { 306 306 return $terms; 307 307 } … … 340 340 341 341 // Make sure we are in the correct taxonomy. 342 if ( 'post_tag' != $taxonomy ) {342 if ( 'post_tag' !== $taxonomy ) { 343 343 return $terms; 344 344 } … … 467 467 $options = array_intersect_key( $options, $defaults ); 468 468 469 if ( 'all' != $key ) {469 if ( 'all' !== $key ) { 470 470 return isset( $options[ $key ] ) ? $options[ $key ] : false; 471 471 }
Note: See TracChangeset
for help on using the changeset viewer.