我们有一些生成CSS样式的短代码。有类似的选项(“标题颜色、标题框边框颜色、字体大小、字体重量”)。
当用户设置选项时,它将在短代码开始之前生成。
ex)
<html>
<head>
.................. (some style, js) ..................
/* I want to put all of css styles into head tag from into body tags */
</head>
<body>
<style type="text/css">
.sc_title {color:#fff; font-weight:600;}
</style>
<div class="sc_wrap">
<h1 class="sc_title">Hello This is the title</h1>
</div>
</body>
</html>
你可能知道
this is illegal rule for W3C. style tags have to be in "head" tag.Is there anyway to put them into header tags when css styles have been generated from shortcodes?
我看到一些提示或教程说我应该使用wp排队风格。我认为不可能创建每个。每个短代码的css文件。
如果我们遗漏了什么或您有什么好主意,请告知我们。
非常感谢。