Created
August 27, 2012 23:39
-
-
Save claudiosanches/3493418 to your computer and use it in GitHub Desktop.
Tradução Wordpress
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 | |
add_action( 'after_setup_theme', 'meu_blog_traducao_init' ); | |
function meu_blog_traducao_init() { | |
load_theme_textdomain( 'nome-do-tema', TEMPLATEPATH . '/languages' ); | |
} | |
/* | |
* Strings que irão receber tradução deve estar como: | |
* <?php _e('Palavra que vai ser traduzida', 'nome-do-tema'); ?> | |
* Ou da seguinte forma: | |
* <?php echo __('Palavra que vai ser traduzida', 'nome-do-tema'); ?> | |
*/ | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment