''
), $atts );
return '
';
}
//Ensure your playlist here
function start_playlist(){
return '
';
}
function stop_playlist(){
return '
';
}
function add_to_playlist($atts){
$a = shortcode_atts( array(
'src'=> '',
'name'=>''
), $atts );
//return ' '.$a['name'].'';
return ' '.$a['name'].'';
}
add_shortcode( 'aaplayer', 'player' );
add_shortcode( 'startaap', 'start_playlist' );
add_shortcode( 'stopaap', 'stop_playlist' );
add_shortcode( 'addpl', 'add_to_playlist' );
//add jquery
function include_jQuery() {
if (!is_admin()) {
// comment out the next two lines to load the local copy of jQuery
wp_deregister_script('jquery');
wp_register_script('jquery', plugins_url( '/jquery183.js' , __FILE__ ), false, '1.8.3');
wp_enqueue_script('jquery');
}
}
add_action('init', 'include_jQuery');