我刚刚使用POEDIT创建了po和mo文件,但未翻译。
我的.po文件
#: index.php:23
msgid "This is Eng content"
msgstr "This is UK content"
我的index.php文件
_e('This is Eng content','custom');
我的功能
function custom_theme_setup() {
load_theme_textdomain( 'custom', get_template_directory() . '/languages' );
}
add_action( 'after_setup_theme', 'custom_theme_setup');
我不知道什么是错误的。非常感谢。