Wordpress如何告诉我的css版本

时间:2015-10-27 11:17:04

标签: php html css wordpress

正在开发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' />

1 个答案:

答案 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中enqueue
wp_enqueue_style('main_css', get_stylesheet_uri(), array(), THEME_VERSION);

如果你想在数组中使用,你可以使它依赖于其他样式表,并且主题版本在它之后。