Skip to content

Instantly share code, notes, and snippets.

@andrii-kvlnko
Created March 13, 2022 02:33
Show Gist options
  • Save andrii-kvlnko/9e3c1068c6e184cf41675d0351895d7f to your computer and use it in GitHub Desktop.
Save andrii-kvlnko/9e3c1068c6e184cf41675d0351895d7f to your computer and use it in GitHub Desktop.
Show registered styles list | Wordpress
global $wp_styles;
$styles = ( new Arrayy( $wp_styles->registered ) )
->map( function ( $style ) {
return [
'src' => $style->src,
'handle' => $style->handle,
];
} )
->toArray();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment