Comment list buttons.

This commit is contained in:
Fabiano Alencar 2018-03-06 16:59:26 -03:00
parent ed41914af7
commit 11b513e69d
1 changed files with 3 additions and 4 deletions

View File

@ -36,15 +36,14 @@ function tainacan_Comments_Callback($comment, $args, $depth) {
<?php comment_text(); ?>
<p class="reply">
<?php comment_reply_link( array_merge($args, array(
//'reply_text' => __('Reply <span>&darr;</span>', 'tainacan-theme'),
'reply_text' => __('Reply', 'tainacan-theme'),
'reply_text' => __('Reply'),
'depth' => $depth,
'max_depth' => $args['max_depth'],
'before' => '<li class="reply-link list-inline-item">',
'after' => '</li>'
'after' => '<i class="material-icons text-jelly-bean align-middle pl-1" style="font-size: 15px">chat_bubble_outline</i></li>'
)
));
edit_comment_link( __( 'Edit' ), '<li class="edit-link list-inline-item">', '</li>' );
edit_comment_link( __( 'Edit' ), '<li class="edit-link list-inline-item">', '<i class="material-icons text-jelly-bean align-middle pl-1" style="font-size: 15px">mode_edit</i></li>' );
?>
</p>