 mpromp2
|
Normally I change the verbiage to “No Whispers Yet.” and “(num) Whispers” I have been unable to do so with this theme. Is it possible. My PW is still the same.
|
 Jeremy Clark
|
If you look on the loop.php file in the theme you can see this line
<?php comments_popup_link(__(‘Be the first to comment’ ,’techozoic’), __(’1 Comment. Join the Conversation’ ,’techozoic’), _n(‘% Comment so far. Join the Conversation’ , ‘% Comments so far. Join the Conversation’,get_comments_number(),’techozoic’), ‘comments-link’, __(‘Comments Closed’ ,’techozoic’)); ?>
you can change it to this.
<?php comments_popup_link(__(‘No Whispers Yet.’ ,’techozoic’), __(’1 Whisper’ ,’techozoic’), _n(‘% Whispers’ , ‘% Whispers’,get_comments_number(),’techozoic’), ‘comments-link’, __(‘Comments Closed’ ,’techozoic’)); ?>
|