Skip to content

Instantly share code, notes, and snippets.

@andrii-kvlnko
Last active June 21, 2023 21:18
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/e1e8a24dec2b71973344b39ea26a4370 to your computer and use it in GitHub Desktop.
Save andrii-kvlnko/e1e8a24dec2b71973344b39ea26a4370 to your computer and use it in GitHub Desktop.
Enqueue scripts and styles from upload directory
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/example/css/main.css', $base_dir ) )
);
} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment