Changeset 61643 for trunk/src/wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-comment.php
- Timestamp:
- 02/14/2026 11:45:50 PM (8 weeks ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-content/themes/twentytwenty/classes/class-twentytwenty-walker-comment.php
r55276 r61643 38 38 39 39 ?> 40 <<?php echo $tag; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- static output?> id="comment-<?php comment_ID(); ?>" <?php comment_class( $this->has_children ? 'parent' : '', $comment ); ?>>40 <<?php echo $tag; ?> id="comment-<?php comment_ID(); ?>" <?php comment_class( $this->has_children ? 'parent' : '', $comment ); ?>> 41 41 <article id="div-comment-<?php comment_ID(); ?>" class="comment-body"> 42 42 <footer class="comment-meta"> … … 50 50 echo wp_kses_post( $avatar ); 51 51 } else { 52 printf( '<a href="%s" rel="external nofollow" class="url">', $comment_author_url ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped --Escaped in https://developer.wordpress.org/reference/functions/get_comment_author_url/52 printf( '<a href="%s" rel="external nofollow" class="url">', $comment_author_url ); 53 53 echo wp_kses_post( $avatar ); 54 54 } … … 132 132 <?php 133 133 if ( $comment_reply_link ) { 134 echo $comment_reply_link; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped -- Link is escaped in https://developer.wordpress.org/reference/functions/get_comment_reply_link/134 echo $comment_reply_link; 135 135 } 136 136 if ( $by_post_author ) {
Note: See TracChangeset
for help on using the changeset viewer.