I have this one blog that I post just once a month. I want the comment link to say "Comment on Month" month being whatever month it is. What would I add to the line:
<?php comments_popup_link('Comment On', 'Comment On', 'Comment On'); ?>
I have this one blog that I post just once a month. I want the comment link to say "Comment on Month" month being whatever month it is. What would I add to the line:
<?php comments_popup_link('Comment On', 'Comment On', 'Comment On'); ?>
How about
<?php
$mycomment='Comment On ' . the_date('F', '', '', 0);
comments_popup_link($mycomment,$mycomment,$mycomment,$mycomment);
?>I can always trust you to solve and figure out what I need, thanks once more!
This topic has been closed to new replies.