Changeset 44574 for trunk/src/wp-includes/feed-atom-comments.php
- Timestamp:
- 01/12/2019 06:40:16 AM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/feed-atom-comments.php
r43571 r44574 111 111 <?php else : // post pass ?> 112 112 <content type="html" xml:base="<?php comment_link(); ?>"><![CDATA[<?php comment_text(); ?>]]></content> 113 <?php113 <?php 114 114 endif; // post pass 115 115 // Return comment threading information (https://www.ietf.org/rfc/rfc4685.txt) 116 if ( $comment->comment_parent == 0 ) : // This comment is top level117 ?>116 if ( $comment->comment_parent == 0 ) : // This comment is top level 117 ?> 118 118 <thr:in-reply-to ref="<?php the_guid(); ?>" href="<?php the_permalink_rss(); ?>" type="<?php bloginfo_rss( 'html_type' ); ?>" /> 119 <?php119 <?php 120 120 else : // This comment is in reply to another comment 121 121 $parent_comment = get_comment( $comment->comment_parent );
Note: See TracChangeset
for help on using the changeset viewer.