Skip to content

Instantly share code, notes, and snippets.

@Jonnyauk
Created February 7, 2015 00:10
Show Gist options
  • Save Jonnyauk/4cde7d870791a4493b1a to your computer and use it in GitHub Desktop.
Save Jonnyauk/4cde7d870791a4493b1a to your computer and use it in GitHub Desktop.
Using WordPress _n
<?php
$my_value = 5;
printf( _n( 'Counting just 1 time', 'Counting %s times, whoot!', $my_value, 'mytheme' ), $my_value );
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment