Skip to content

Instantly share code, notes, and snippets.

@andrii-kvlnko
Last active June 21, 2023 21:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andrii-kvlnko/6220d4130ef3099334d2f9a3ec99ff20 to your computer and use it in GitHub Desktop.
Save andrii-kvlnko/6220d4130ef3099334d2f9a3ec99ff20 to your computer and use it in GitHub Desktop.
WordPress | Add script/style | uploads dir
add_action( 'wp_enqueue_scripts', function() {
$wp_upload_dir = wp_upload_dir();
$base_url = $wp_upload_dir['baseurl'];
$base_dir = $wp_upload_dir['basedir'];
wp_enqueue_style(
'howlife-style',
sprintf( '%s/example/css/main.css', $base_url ),
[],
filemtime( sprintf( '%s/howlife/css/main.css', $base_dir ) )
);
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment