PluginProbe
Friends / 2.8.1
Friends v2.8.1
4.3.2 4.3.1 4.3.0 4.2.2 4.2.1 4.2.0 4.1.0 2.7.4 2.7.5 2.7.6 2.7.7 2.7.8 2.7.9 2.8.0 2.8.1 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.0 2.9.1 All 88 releases
friends / templates / frontend / parts / comment.php

comment.php in Friends 2.8.1, at templates/frontend/parts/comment.php

26 lines 694 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * This template contains a comment for an article on /friends/.
4 *
5 * @version 1.0
6 * @package Friends
7 */
8
9 ?>
10 <div class="comment">
11 <div class="comment-meta mb-1" style="font-size: 90%">
12 <strong><?php echo esc_html( $args['author'] ); ?></strong>
13 <a href="<?php echo esc_attr( $args['permalink'] ); ?>" title="<?php echo esc_attr( $args['date'] ); ?>'">
14 <?php
15 echo esc_html(
16 /* translators: %s is a time span */
17 sprintf( __( '%s ago' ), human_time_diff( strtotime( $args['date'] ) ) ) // phpcs:ignore WordPress.WP.I18n.MissingArgDomain
18 );
19 ?>
20 </a>
21 </div>
22 <blockquote class="comment-content">
23 <?php echo wp_kses_post( $args['post_content'] ); ?>
24 </blockquote>
25 </div>
26