| 1 |
<?php |
| 2 |
|
| 3 |
function webling_admin_add_headers($hook) |
| 4 |
{ |
| 5 |
// only on webling admin pages |
| 6 |
if (substr($hook,0,7) == 'webling' || $hook == 'toplevel_page_webling_page_main') { |
| 7 |
|
| 8 |
// Plugin |
| 9 |
wp_enqueue_style('webling_admin_css', plugins_url('css/admin.css', WEBLING_PLUGIN_FILE_NAME)); |
| 10 |
wp_enqueue_script('webling_admin_js', plugins_url('/js/admin.js', WEBLING_PLUGIN_FILE_NAME)); |
| 11 |
|
| 12 |
// jQuery UI |
| 13 |
wp_enqueue_style('webling_admin_css_jquery_ui', plugins_url('js/jquery-ui-1.12.1.custom/jquery-ui.min.css', WEBLING_PLUGIN_FILE_NAME)); |
| 14 |
wp_enqueue_script('jquery'); |
| 15 |
wp_enqueue_script('jquery-ui-sortable'); |
| 16 |
} |
| 17 |
} |
| 18 |
|