| 1 |
<?php |
| 2 |
/** |
| 3 |
* This template contains the comments in the footer for an article on /friends/. |
| 4 |
* |
| 5 |
* @version 1.0 |
| 6 |
* @package Friends |
| 7 |
*/ |
| 8 |
|
| 9 |
$args['friends']->frontend->link( |
| 10 |
get_comments_link(), |
| 11 |
get_comments_number(), |
| 12 |
array( |
| 13 |
'class' => 'comments btn ml-1', |
| 14 |
'dashicon_front' => 'admin-comments', |
| 15 |
'data-id' => get_the_ID(), |
| 16 |
'data-cnonce' => wp_create_nonce( 'comments-' . get_the_ID() ), |
| 17 |
) |
| 18 |
); |
| 19 |
|