igmoweb
1/30/2015 - 9:04 AM

Generate dynamic CSS stylesheet

Generate dynamic CSS stylesheet

<?php
add_action( 'plugins_loaded', 'dolly_generate_css_file' );
function dolly_generate_css_file() {
    if ( isset( $_GET['dolly-styles'] ) && $_GET['dolly-styles'] === 'true' ) {
    	// "Engañar la cabecera"
        // Generar aquí el CSS
        exit;
    }
}