Changeset 28824 for trunk/src/wp-includes/comment-template.php
- Timestamp:
- 06/24/2014 05:05:56 PM (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-includes/comment-template.php
r28813 r28824 1785 1785 } 1786 1786 ?> 1787 <<?php echo $tag; ?> <?php comment_class( empty( $args['has_children'] ) ? '' : 'parent' ); ?> id="comment-<?php comment_ID(); ?>">1787 <<?php echo $tag; ?> <?php comment_class( $this->has_children ? 'parent' : '' ); ?> id="comment-<?php comment_ID(); ?>"> 1788 1788 <?php if ( 'div' != $args['style'] ) : ?> 1789 1789 <div id="div-comment-<?php comment_ID(); ?>" class="comment-body"> … … 1831 1831 $tag = ( 'div' === $args['style'] ) ? 'div' : 'li'; 1832 1832 ?> 1833 <<?php echo $tag; ?> id="comment-<?php comment_ID(); ?>" <?php comment_class( empty( $args['has_children'] ) ? '' : 'parent' ); ?>>1833 <<?php echo $tag; ?> id="comment-<?php comment_ID(); ?>" <?php comment_class( $this->has_children ? 'parent' : '' ); ?>> 1834 1834 <article id="div-comment-<?php comment_ID(); ?>" class="comment-body"> 1835 1835 <footer class="comment-meta">
Note: See TracChangeset
for help on using the changeset viewer.