I’m trying to load the jQuery UI library into a WordPress plugin using this enqueue statement:
wp_enqueue_script('jquery');
wp_enqueue_script('jquery-ui-core');
The jQuery library loads fine, but the ui-core is MIA. The only way I can get ui-core functions to fire is to load the library with a static include like this:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.15/jquery-ui.min.js"></script>
What am I missing?