首页 > 解决方案 > PO 文件未翻译

问题描述

我刚刚用 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');

我不知道什么是错误。非常感谢 。

标签: wordpress

解决方案


推荐阅读