Esempio n. 1
0
 function woo_enqueue_custom_styling()
 {
     echo "\n" . '<!-- Custom CSS Styling -->' . "\n";
     echo '<style type="text/css">' . "\n";
     woo_custom_styling();
     echo '</style>' . "\n";
 }
 function woo_load_custom_styling()
 {
     if (isset($_GET['woo-css']) && 'load' == $_GET['woo-css']) {
         header('Content-Type: text/css');
         echo woo_custom_styling();
         exit;
     }
 }