本文介绍了如何在wordpress中的style.min.css的head标签内填充缓存?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); echo '?ver=' . filemtime( get_stylesheet_directory() . '/style.min.css'); ?>" media="screen" />



保持返回style.css。



如何我让它返回style.min.css?提醒:我希望能够在head标签内执行此操作,而不是在函数内执行此操作。谢谢



我尝试了什么:



我试过了/>


Keeps returning style.css.

How do I make it return style.min.css? Reminder: I want to be able to do this within the head tag, not within functions. Thanks

What I have tried:

I have tried

<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); echo '?ver=' . filemtime( get_stylesheet_url() . '/style.min.css'); ?>" media="screen" />



用'get_stylesheet_url'替换'get_stylesheet_directory'肯定不起作用,它删除了< link>


Replacing 'get_stylesheet_directory' with 'get_stylesheet_url' definitely did not work, it erased everything underneath the <link>

推荐答案

<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url'); echo '?ver=' . filemtime( get_stylesheet_directory() . '/style.css'); ?>" media="screen" />





现在修改style.css文件时它必须工作。



希望这对您有用!



Now it must work when you modify your style.css file.

Hope this will work for you!


<link rel="stylesheet" type="text/css" href="<?php echo bloginfo('stylesheet_directory').'/style.min.css'; echo '?ver=' . filemtime( get_stylesheet_directory() . '/style.min.css'); ?>" media="screen" />


这篇关于如何在wordpress中的style.min.css的head标签内填充缓存?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-30 12:34