Changeset 55420 for trunk/src/wp-content/themes/twentyeleven/functions.php
- Timestamp:
- 02/24/2023 06:21:21 AM (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentyeleven/functions.php
r54492 r55420 323 323 324 324 // If no custom options for text are set, let's bail. 325 if ( HEADER_TEXTCOLOR == $text_color ) {325 if ( HEADER_TEXTCOLOR === $text_color ) { 326 326 return; 327 327 } … … 387 387 <?php 388 388 // If the user has set a custom color for the text, use that. 389 if ( get_header_textcolor() != HEADER_TEXTCOLOR ) :389 if ( get_header_textcolor() !== HEADER_TEXTCOLOR ) : 390 390 ?> 391 391 #site-title a, … … 725 725 $avatar_size = 68; 726 726 727 if ( '0' != $comment->comment_parent ) {727 if ( '0' !== $comment->comment_parent ) { 728 728 $avatar_size = 39; 729 729 } … … 757 757 ?> 758 758 759 <?php if ( '0' == $comment->comment_approved ) : ?>759 <?php if ( '0' === $comment->comment_approved ) : ?> 760 760 <em class="comment-awaiting-moderation"><?php echo $moderation_note; ?></em> 761 761 <br />
Note: See TracChangeset
for help on using the changeset viewer.