Skip to content

Instantly share code, notes, and snippets.

@dnavarrojr
Created December 4, 2018 11:44
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 dnavarrojr/cb14726c8d0bee0fc5bc164c2c6ce59d to your computer and use it in GitHub Desktop.
Save dnavarrojr/cb14726c8d0bee0fc5bc164c2c6ce59d to your computer and use it in GitHub Desktop.
Trouble Loading datepicker in WordPress
function export_menu_scripts( $hook ) {
if ( $hook == 'admin_page_export-submenu' ) {
// load our scripts
wp_enqueue_script( 'jquery-ui-datepicker' );
wp_enqueue_style('jquery-ui', '//ajax.googleapis.com/ajax/libs/jqueryui/1.8.2/themes/smoothness/jquery-ui.css');
}
}
add_action( 'admin_enqueue_scripts', 'export_menu_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment