Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@krishna19
Forked from syamilmj/gist:4009718
Created December 7, 2016 12:15
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 krishna19/11b7c9fa634ec1c5206be73c143fecbd to your computer and use it in GitHub Desktop.
Save krishna19/11b7c9fa634ec1c5206be73c143fecbd to your computer and use it in GitHub Desktop.
options.css enqueue
if(is_multisite()) {
$uploads = wp_upload_dir();
wp_register_style('options', $uploads['baseurl'] . '/options.css', 'style');
} else {
wp_register_style('options', get_template_directory_uri() . '/css/options.css', 'style');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment