我目前有一个wordpress主题选项页面。我阅读了style.php中的所有主题选项样式,然后将其包含在我的网站主管中。
有谁知道如何缩小此style.php文件?
大多数“即时”脚本提供了一个解决方案,但它会更改标题,从而导致出现错误消息“已发送标题”。
的header.php:
<style>
<?php require_once('css/style.php');?>
</style>
style.php:
<?php
?>
body {
background-color:<?php global $variable; echo $variable['color-background'];?>;
font-family:<?php global $variable; echo $variable['typography6']['font-family'];?>;
}
a {
color: <?php global $variable; echo $variable['link-color']['regular'];?>;
}
<?php
?>
有没有人有解决方案?