Reply To: Enlightenment – Leave a comment or reply

#21564
Daniel Tara
Keymaster

Currently the theme does add a “Leave a comment” link to each post at the bottom, but it’s labeled as “No Comments” instead of “Leave a comment”. If you would like to change the label, add this code to your child theme’s functions.php file:

add_filter( 'enlightenment_comments_link_args', 'enlightenment_child_filter_comments_link_args', 12 );

function enlightenment_child_filter_comments_link_args( $args ) {
  	$args['format']['zero'] = __( 'Leave a comment', 'enlightenment-child' );
  	return $args;
}

Alternatively if you would like the label to be “Leave a comment” regardless of the number of comments, add this code instead:

add_filter( 'enlightenment_comments_link_args', 'enlightenment_child_filter_comments_link_args', 12 );

function enlightenment_child_filter_comments_link_args( $args ) {
  	$args['format']['zero'] = __( 'Leave a comment', 'enlightenment-child' );
  	$args['format']['one']  = __( 'Leave a comment', 'enlightenment-child' );
  	$args['format']['more'] = __( 'Leave a comment', 'enlightenment-child' );
  	return $args;
}