Skip to content

Instantly share code, notes, and snippets.

@willybahuaud
Forked from anonymous/gist:4952894
Created February 14, 2013 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save willybahuaud/4953038 to your computer and use it in GitHub Desktop.
Save willybahuaud/4953038 to your computer and use it in GitHub Desktop.
// mauvaise syntaxe
<h1><?php _e('This is a <span class="red">title</span>', 'textdomain') ?></h1>
//Et ça, c'est mal ?
<?php echo sprintf( __( '%sThis is a %stitle%s', 'textdomain'),'<h1>', '<span class="red">', '</span></h1>' ); ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment