Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/seothemes/core-utilities

A set of helper functions for use in Genesis child themes.
https://github.com/seothemes/core-utilities

Last synced: 7 days ago
JSON representation

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

Awesome Lists containing this project

README

        

# Utilities

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

## Minify CSS

```php
use SEOThemes\Core\Utilities\MinifyCSS;

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

MinifyCSS::minify( $css );
```

Outputs:

```php
body{color:red}
```