个性化的网站是吸引访客,也是表达自己创新精神的途径,有很多站长非常喜欢把自己的网站做得与众不同,这段代码可以让你的管理栏的文字和主题的文字不同,想使用哪种语言自己设置就行了,同样是把代码放在functions.php中。
<?php
// setup one language for admin and the other for theme
// must be called before load_theme_textdomain()
function set_my_locale($locale) {
$locale = ( is_admin() ) ? "en_US" : "it_IT";
setlocale(LC_ALL, $local );
return $locale;}
add_filter( 'locale', 'set_my_locale' );
分类:新闻资讯