minifie style.php在index.php的头部

时间:2014-03-03 08:26:03

标签: php wordpress wordpress-theming

我目前有一个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

?>

有没有人有解决方案?

1 个答案:

答案 0 :(得分:0)

看看CssMin - 项目。它是一个PHP类,可以帮助你解决这个问题。