12 lines
690 B
PHP
12 lines
690 B
PHP
<?php
|
|
function sportspress_admin_enqueue_scripts() {
|
|
wp_register_style( 'sportspress-admin', SPORTSPRESS_PLUGIN_URL . 'assets/css/admin.css', array(), time() );
|
|
wp_enqueue_style( 'sportspress-admin');
|
|
|
|
wp_enqueue_script( 'jquery' );
|
|
wp_enqueue_script( 'google-maps', 'http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places' );
|
|
wp_enqueue_script( 'jquery-locationpicker', SPORTSPRESS_PLUGIN_URL .'/assets/js/locationpicker.jquery.js', array( 'jquery' ), '0.1.6', true );
|
|
wp_enqueue_script( 'sportspress-admin', SPORTSPRESS_PLUGIN_URL .'/assets/js/admin.js', array( 'jquery' ), time(), true );
|
|
}
|
|
add_action( 'admin_enqueue_scripts', 'sportspress_admin_enqueue_scripts' );
|