我在我的子主题目录中创建了一个名为“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文件?
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\' );