找不到is_rtl()
工作不正常,但发现wpml_is_rtl
做自己的事,
因此,通过将此代码添加到主题functions.php
一切似乎都很好:
if ( apply_filters( \'wpml_is_rtl\', null) ) {
mu_fix_is_rtl(true);
}else {
add_filter(\'language_attributes\',\'mu_alter_language_attributes\');
mu_fix_is_rtl(false);
}
function mu_alter_language_attributes($output, $doctype){
return str_replace(\'rtl\',\'ltr\',$output);
}
function mu_fix_is_rtl($rtl){
global $wp_locale;
if($rtl){
$wp_locale->text_direction = \'rtl\';
}else{
$wp_locale->text_direction = \'ltr\';
}
}