Wordpress主题翻译未实现到管理区域

时间:2013-04-30 21:26:53

标签: wordpress localization custom-post-type po

我开发了一个wordpress主题,其中有一些cusotm帖子类型。我创建了.po语言文件,并成功从php文件中导入了字符串。

问题是与自定义帖子类型相关的翻译未显示在管理区域中。 我尝试过机器__()_x()功能,但没有运气。

如果有人告诉我这里的问题,我很感激。

1 个答案:

答案 0 :(得分:3)

您是否加载了主题文字域?例如:

function so16309230_after_setup_theme(){
    load_theme_textdomain( 'my_theme', get_template_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'so16309230_after_setup_theme' );

还需要在style.css样式表标题中声明文本域:

Text Domain: my_theme