Skip to content

Instantly share code, notes, and snippets.

@hasinhayder
Last active February 21, 2021 07:08
Show Gist options
  • Save hasinhayder/d44859b1b0a8fc6cd91e to your computer and use it in GitHub Desktop.
Save hasinhayder/d44859b1b0a8fc6cd91e to your computer and use it in GitHub Desktop.
generate wp_enqueue_style calls for all the css files in current directory
#!/usr/bin/env php
<?php
foreach(glob("*.css") as $css){
echo "wp_enqueue_style( 'wptheme-{$css}', get_template_directory_uri().'/css/{$css}',null,'1.0');\n";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment