正在开发wordpress主题,wordpress会自动添加我的style.css
,但它会分配版本号,我现在不知道版本的价值
下面的链接是一个wordpress系统添加到我的每个页面的head部分,而css版本是4.3.1。
<link rel='stylesheet' id='twentytwelve-style-css' href='http://localhost/xyzwebsite/wp-content/themes/twentytwelve-child/style.css?ver=4.3.1' type='text/css' media='all' />
我希望像这样
<link rel='stylesheet' id='twentytwelve-style-css' href='http://localhost/xyzwebsite/wp-content/themes/twentytwelve-child/style.css?ver=3.8.11' type='text/css' media='all' />
答案 0 :(得分:4)
如果我没弄错的话,你需要加入style.css
/*
Theme Name: ThemeName
Version: 1.0.0
Author: yourname
Author URI: http://yourwebsite.com
Description: your description
Theme URI: your theme URL
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: random tags go here
*/
在右上方。同样在您需要的functions.php
文件中
<?php
define('THEME_NAME', 'ThemeName');
define('THEME_VERSION', '1.0.0');
然后在带有
的functions.php中enqueuewp_enqueue_style('main_css', get_stylesheet_uri(), array(), THEME_VERSION);
如果你想在数组中使用,你可以使它依赖于其他样式表,并且主题版本在它之后。