seothemes/core-utilities

A set of helper functions for use in Genesis child themes.

0.1.0 2018-08-01 11:56 UTC

This package is auto-updated.

Last update: 2024-04-26 13:40:00 UTC


README

A set of helper functions for use in Genesis child themes.

Minify CSS

use SEOThemes\Core\Utilities\MinifyCSS;

$css = '
    body {
        color: red;
    }
';

MinifyCSS::minify( $css );

Outputs:

body{color:red}