Skip to content

Instantly share code, notes, and snippets.

@technosailor
Created March 9, 2015 21:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save technosailor/b41914159f18a6fa635a to your computer and use it in GitHub Desktop.
Save technosailor/b41914159f18a6fa635a to your computer and use it in GitHub Desktop.
class WP_Media_Embed_Start_Time {
public function __construct() {
$this->hooks();
}
public function hooks() {
add_filter( 'shortcode_atts_audio', array( $this, 'add_attributes' ), 10, 3 );
add_filter( 'shortcode_atts_video', array( $this, 'add_attributes' ), 10, 3 );
add_filter( 'wp_audio_shortcode', array( $this, 'add_start_time' ), 10, 5 );
add_filter( 'wp_video_shortcode', array( $this, 'add_start_time' ), 10, 5 );
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue' ) );
}
public function enqueue() {
wp_enqueue_script( 'jquery' );
}
public function add_attributes( $out, $pairs, $atts ) {
if( array_key_exists( 'start', $atts ) ) {
if( is_numeric( $atts['start'] ) ) {
$out['start'] = $atts['start'];
}
else {
$out['start'] = 0;
}
}
else {
$out['start'] = 0;
}
return $out;
}
public function add_start_time( $html, $atts, $audio, $post_id, $library ) {
preg_match( '#id="((audio|video)?-\d+-\d+)"#', $html, $dom );
if( !isset( $dom[1] ) )
return $html;
$dom_id = esc_js( $dom[1] );
$start_time = (int) $atts['start'];
$script = <<<SCRIPT_TAG
<script>
jQuery(document).ready(function($) {
var media = $('#$dom_id');
media.on('canplay', function (ev) {
this.currentTime = $start_time;
});
});
</script>
SCRIPT_TAG;
$html = $html . $script;
return $html;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment