网站仿站时多个CSS文件怎么创建Style.css
本课程视频是VIP会员课程,学习请进入VIP学习区。
在学习仿站教程时,我们在仿制某个目标网站,如果遇到引用了很多的CSS文件,应该拿哪一个命名为style.css呢?如:
在WordPress仿站教程中,我们讲了WP仿站必须有一个css文件叫做style.css,这个时候,我们只需要从上面的几个css文件中随便找一个文件重命名为style.css,然后把这个文件移动到模板根目录下,其他几个文件不用动,还是存放在images文件夹下面。
完成上面的操作之后,要如何改成WP标签调用?
假如我们把第一个main.css改成了style.css,然后移动到了images文件夹外面。上面的代码就写成:
<link type="text/css" rel="stylesheet" href="<?php bloginfo( 'stylesheet_url' ); ?>">
<link type="text/css" rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/images/ie.css">
<link type="text/css" rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/images/multi.css">
<link type="text/css" rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/images/index.css">
<link type="text/css" rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/images/addthis.css" media="all">
因为<?php bloginfo('template_directory'); ?>/style.css这个代码就等于<?php bloginfo( 'stylesheet_url' ); ?>