I have used the shortcode as before, with and without parameters, it only displays exactly the text I have typed. As in:
[better_recent_comments number=”1″ post_status=”publish,private” format=”{comment} {post}” excerpts=false]
or
[better_recent_comments]
Shortcode does not work as normal after modifying the comment arguments in Better_Recent_Comments_Util.php on line 78 to this:
$comments = get_comments( array(
‘number’ => $number,
‘status’ => ‘approve’,
‘type’ => apply_filters( ‘better_recent_comments_comment_type’, ‘comment’ ),
‘comment__in’ => array( 45, 56) 768// set your comment IDs here
) );
And also when I changed it to this:
$comments = get_comments( array(
‘number’ => $number,
‘status’ => ‘approve’,
‘type’ => apply_filters( ‘better_recent_comments_comment_type’, ‘comment’ ),
‘comment__in’ => array( 769) // set your comment IDs here
) );
Just in case you meant IN the brackets replacing ( 45, 56) when you said ‘here’. Either way, I don’t get anything different than what I’ve typed displayed.