Skip to content

Instantly share code, notes, and snippets.

@davatron5000
Created February 21, 2014 22:01
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save davatron5000/9144421 to your computer and use it in GitHub Desktop.
Save davatron5000/9144421 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', 'timejump.js', array, '1.0', true);
}
add_action( 'wp_enqueue_scripts', 'timejump_scripts' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment