我有两个域名,一个http://www.eu-ohne-mpu-fs.de/, 第二个:http://eu-bw.de/. 第二个域是设置Wordpress地址(URL)和域地址(URL)的域。第一个指向目录/eu bw。在我的子主题样式表中,我使用字体面CSS规则来设置样式:标题、标题和导航字体。该规则适用于第二个域,但不适用于第一个域。我也在函数中使用此代码。php(文件在子主题目录中创建)将父主题样式表排入子主题样式表:
<?php
add_action( \'wp_enqueue_scripts\', \'theme_name_scripts\' );
add_action( \'wp_enqueue_scripts\', \'theme_enqueue_styles\' );
function theme_enqueue_styles() {
wp_enqueue_style( \'parent-style\', get_template_directory_uri() . \'/style.css\' );
wp_enqueue_style( \'child-style\',
get_theme_root_uri() . \'/eu-bw/style.css\',
array(\'parent-style\')
);
}
?>
我应该更改什么以在两个域中都使用工作字体?