- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
19 lines
347 B
PHP
Executable File
19 lines
347 B
PHP
Executable File
<?php
|
|
namespace W3TCL\Minify;
|
|
/**
|
|
* Combine only minifier
|
|
*/
|
|
class Minify_CombineOnly {
|
|
/**
|
|
* Minifies content
|
|
* @param string $content
|
|
* @param array $options
|
|
* @return string
|
|
*/
|
|
public static function minify($content, $options = array()) {
|
|
$content = Minify_CSS_UriRewriter::rewrite($content, $options);
|
|
|
|
return $content;
|
|
}
|
|
}
|