我想在样式中添加其他样式。将css文件发送到客户端之前。这可能吗?
当前样式。css包含:
/*
Theme Name: My Theme
Theme URI: https://example.com/themes/vanilla/
...
*/
...
html {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
font-size: 62.5%;
overflow-y: scroll;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
// MY ADDITIONAL CSS HERE
我想在该文件的末尾动态添加其他CSS。这可能吗?
例如,在我的索引中。php:
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
// normal post stuff
moreCSS = $myPost->moreCSS;
addMoreCSSToStyles_css(moreCSS);
endwhile;
?>