利用儿童主位进行主位翻译

时间:2014-01-12 作者:Jakob

我在我的子主题目录中创建了一个名为“languages”的文件夹,并添加了:da\\u DK。po和da\\u DK。使用POedit生成的mo文件。我创建了一个函数。php文件,并添加了以下代码行(如下所示):http://codex.wordpress.org/Child_Themes):

<?php

/**
* Setup My Child Theme’s textdomain.
*
* Declare textdomain for this child theme.
* Translations can be filed in the /languages/ directory.
*/
function my_child_theme_setup() {
load_child_theme_textdomain( ‘ifeaturepro5-child’, get_stylesheet_directory() . ‘/languages’ );
}
add_action( ‘after_setup_theme’, ‘my_child_theme_setup’ );
?>
这会导致两个问题:

1。我无法登录wordpress管理区。尝试添加评论前端会导致错误或空白页

删除自定义函数时。子主题目录中的php文件一切都恢复正常。

我在自定义函数中输入了哪些错误。上面显示的php文件?

1 个回复
SO网友:Manolo

您使用了奇怪的引号:

load_child_theme_textdomain( ‘ifeaturepro5-child’, get_stylesheet_directory() . ‘/languages’ );
}
add_action( ‘after_setup_theme’, ‘my_child_theme_setup’ );
使用此选项:

load_child_theme_textdomain( \'ifeaturepro5-child\', get_stylesheet_directory() . \'/languages\' );
}
add_action( \'after_setup_theme\', \'my_child_theme_setup\' );

结束

相关推荐

从图像路径中删除‘wp-Content/Themes/Themename/’

我目前正在将一个基于其他CMS的旧网站移动到一个新服务器上,使用WordPress。然而,这个网站在Google上排名很好,我必须保留所有的链接结构,包括来自图片的链接结构。因此,在旧CMS中,图像链接如下:http://www.domain-name.de/images/image1.jpg 现在,他们是这样的:http://www.domain-name.de/wp-content/themes/theme-name/images/image1.jpg 但它们必须与第一个示例中的一