Skip to content

Instantly share code, notes, and snippets.

@iChris
Forked from davatron5000/timejump.php
Last active August 29, 2015 13:56
Show Gist options
  • Save iChris/9145200 to your computer and use it in GitHub Desktop.
Save iChris/9145200 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Timejump
* Plugin URI: http://davatron5000.github.io/TimeJump
* Description: Deep linking for podcasts
* Version: 1.0
* Author: Dave Rupert
* Author URI: http://daverupert.com
* License: MIT/GPL2
*/
function timejump_scripts() {
wp_enqueue_script(
'timejump',
plugins_url( '/timejump.js' , __FILE__ ),
array(''),
'1.0',
true);
}
add_action( 'wp_enqueue_scripts', 'timejump_scripts' );
@iChris
Copy link
Author

iChris commented Feb 21, 2014

I don't know what I'm doing. I know it's not working - i.e. pdcst.ca

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment