Create discussion-meta.php
This commit is contained in:
parent
bc99494ae9
commit
4ca9cd8a47
|
@ -0,0 +1,32 @@
|
|||
<?php
|
||||
/**
|
||||
* The template for displaying Current Discussion on posts
|
||||
*
|
||||
* @package WordPress
|
||||
* @subpackage Twenty_Nineteen
|
||||
* @since 1.0.0
|
||||
*/
|
||||
|
||||
/* Get data from current discussion on post. */
|
||||
$discussion = twentynineteen_get_discussion_data();
|
||||
$has_responses = $discussion->responses > 0;
|
||||
|
||||
if ( $has_responses ) {
|
||||
/* translators: %1(X comments)$s */
|
||||
$meta_label = sprintf( _n( '%d Comment', '%d Comments', $discussion->responses, 'twentynineteen' ), $discussion->responses );
|
||||
} else {
|
||||
$meta_label = __( 'No comments', 'twentynineteen' );
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="discussion-meta">
|
||||
<?php
|
||||
if ( $has_responses ) {
|
||||
twentynineteen_discussion_avatars_list( $discussion->authors );
|
||||
}
|
||||
?>
|
||||
<p class="discussion-meta-info">
|
||||
<?php echo twentynineteen_get_icon_svg( 'comment', 24 ); ?>
|
||||
<span><?php echo esc_html( $meta_label ); ?></span>
|
||||
</p>
|
||||
</div><!-- .discussion-meta -->
|
Loading…
Reference in a new issue