Skip to content

Instantly share code, notes, and snippets.

@ziazek
Last active October 19, 2016 04:20
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 ziazek/d82ece00d37d6602543473eb3787ce4a to your computer and use it in GitHub Desktop.
Save ziazek/d82ece00d37d6602543473eb3787ce4a to your computer and use it in GitHub Desktop.
churchope-child-theme/functions.php
<?php
add_action( 'admin_print_scripts-post-new.php', 'event_admin_script', 11 );
add_action( 'admin_print_scripts-post.php', 'event_admin_script', 11 );
function event_admin_script() {
global $post_type;
if( 'th_events' == $post_type ) {
wp_enqueue_script( 'event-admin-script', get_stylesheet_directory_uri() . '/js/datepicker_format.js' );
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment