我正在WordPress本地开发一个网站,然后将其上传到临时开发服务器,以定期向管理层显示我的进度.
问题:
当我将所有内容上传到服务器时,我注意到我的style.css中的样式被fonts.php中的样式覆盖.这是我第一次使用Wordpress平台.我不知道为什么,但当我在本地托管它时,情况并非如此.如图所示,fonts.php在style.css之后声明.
图片:
我尝试了什么:
我正在深入研究wordpress文件,找到一种方法先声明fonts.php然后再使用style.css,以便style.css覆盖fonts.php.我在wp-includes / theme.php中找到了这个文件,在那里我发现了style.css被声明但找不到fonts.php.这是一个死胡同.
有谁知道怎么做?
解决方法:
// Load the theme stylesheets
function theme_styles()
{
// Example of loading a jQuery slideshow plugin just on the homepage
wp_register_style( 'flexslider', get_template_directory_uri() . '/css/flexslider.css' );
// Load all of the styles that need to appear on all pages
wp_enqueue_style( 'main', get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'custom', get_template_directory_uri() . '/css/custom.css' );
// Conditionally load the FlexSlider CSS on the homepage
if(is_page('home')) {
wp_enqueue_style('flexslider');
}
}
add_action('wp_enqueue_scripts', 'theme_styles');