Wordpress - Custom Theme Development
Identify the error in this code snippet for making theme text translatable:
function mytheme_setup() {
load_theme_textdomain('mytheme', get_template_directory() . '/languages');
}
add_action('init', 'mytheme_setup');
echo __('Hello World', 'mytheme');