Looking to replace static string text in this function with dynamic text from a var.
Current model:
comments_number( 'no responses', '1 response', '% responses' );
Ideal Outcome (code guess):
comments_number( '$no_responce_text', '1'.$responce_text, '%'.$responce_text );
I am sure this is an easy php question but stumped here.
Any help would be nice.
Thanks