can i add a link title in content-listing.php ?
is it possible to add a
link title to the "add review" links here?
The code in content-listing.php looks like this
<p class="reviews"><?php
if ( va_user_can_add_reviews() ) {
echo html_link(
get_permalink( get_the_ID() ) . '#add-review' ,
__( 'Add your review', APP_TD )
) ;
echo ', ';
} else if ( !is_user_logged_in() ) {
echo html_link(
get_permalink( get_the_ID() ) . '#add-review' ,
__( 'Add your review', APP_TD )
) ;
echo ', ';
}
the_review_count();
?></p>