Hello.
I’d love if each comment had its own link, so that people could link to specific comments, but I’m not sure how to obtain it.
I see in inc/comments.php this:
'meta' => sprintf( __( '%1$s on %2$s <span class="time">at %3$s</span>', 'graphene' ), '<span class="comment-author">' . graphene_comment_author_link( $comment->user_id ) . '</span>', '<span class="comment-date">' . get_comment_date(), get_comment_time() . '</span>' )
I tried to modify it, but it didn’t work…
'meta' => sprintf( __( '%1$s <a href="comment-<?php comment_ID(); ?>">on %2$s <span class="time">at %3$s</span></a>', 'graphene' ), '<span class="comment-author">' . graphene_comment_author_link( $comment->user_id ) . '</span>', '<span class="comment-date">' . get_comment_date(), get_comment_time() . '</span>' )
I obtained a link, but without the real comment ID: there was literally
my post URL plus comment-<?php comment_ID(); ?>
🙁