Created
February 7, 2015 00:10
-
-
Save Jonnyauk/4cde7d870791a4493b1a to your computer and use it in GitHub Desktop.
Using WordPress _n
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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