Skip to content

Instantly share code, notes, and snippets.

View willybahuaud's full-sized avatar

Willy Bahuaud willybahuaud

View GitHub Profile
// 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>' ); ?>