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