Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
Как это сделать?
<link rel="stylesheet" href="/wp-content/themes/%your theme dir%/%css file name.css%" type="text/css" />
<?php
function enqueue_styles_lv() {
wp_register_style( 'header', get_template_directory_uri(). '/style-lv.css ', array(), '1', 'all' );
wp_enqueue_style( 'header' );
}
function enqueue_styles_ru() {
wp_register_style( 'header', get_template_directory_uri(). '/style-ru.css ', array(), '1', 'all' );
wp_enqueue_style( 'header' );
}
function enqueue_styles_en() {
wp_register_style( 'header', get_template_directory_uri(). '/style-en.css ', array(), '1', 'all' );
wp_enqueue_style( 'header' );
}
function enqueue_styles_de() {
wp_register_style( 'header', get_template_directory_uri(). '/style-de.css ', array(), '1', 'all' );
wp_enqueue_style( 'header' );
}
if(ICL_LANGUAGE_CODE == 'lv'){
add_action( 'wp_enqueue_scripts', 'enqueue_styles_lv' );
}elseif(ICL_LANGUAGE_CODE == 'ru'){
add_action( 'wp_enqueue_scripts', 'enqueue_styles_ru' );
}
elseif(ICL_LANGUAGE_CODE == 'en'){
add_action( 'wp_enqueue_scripts', 'enqueue_styles_en' );
}
elseif(ICL_LANGUAGE_CODE == 'de'){
add_action( 'wp_enqueue_scripts', 'enqueue_styles_de' );
}
?>
2. Возьмите другой шаблон совместимый с WPML (yootheme nano например).Is the Theme compatible with WPML translator plugin?
It has been only tested with qTranslate which is a free plugin and does a pretty good job.
// print custom css set for the "Custom CSS" option in the Theme Options
$custom_css = get_option_tree('custom_css', $theme_options, false, false, -1);
if ($custom_css != '') {
echo $custom_css;
qTranslate - оптимальный выбор.
Если не хотите менять шаблон - забивайте годный цсс (через админку!). Плохо то, что стили будут дублироваться, но там столько завязано на функции get_option_tree. Закажите через support у них что ли? ;>
Мои соболезнования.