Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/seothemes/core-utilities
- Owner: seothemes
- Created: 2018-08-01T11:55:55.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-08-01T12:04:48.000Z (over 6 years ago)
- Last Synced: 2024-04-19T05:02:56.169Z (7 months ago)
- Language: PHP
- Size: 5.86 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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}
```