Skip to content

Instantly share code, notes, and snippets.

@jdcauley
Created May 10, 2016 19:01
Show Gist options
  • Save jdcauley/247f1aabd08fe4c62f0231ca8dd85408 to your computer and use it in GitHub Desktop.
Save jdcauley/247f1aabd08fe4c62f0231ca8dd85408 to your computer and use it in GitHub Desktop.
functions.php
function admin_scripts($hook) {
if ( 'post.php' != $hook ) {
return;
}
wp_enqueue_style('os/admin_style', get_template_directory_uri() . '/assets/admin/main.css', false, null);
wp_enqueue_script( 'os/admin_script', get_template_directory_uri() . '/assets/admin/main.js');
}
add_action( 'admin_enqueue_scripts', 'admin_scripts');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment