Skip to content

Instantly share code, notes, and snippets.

@claudiosanches
Created August 27, 2012 23:39
Show Gist options
  • Save claudiosanches/3493418 to your computer and use it in GitHub Desktop.
Save claudiosanches/3493418 to your computer and use it in GitHub Desktop.
Tradução Wordpress
<?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