Skip to content

Instantly share code, notes, and snippets.

@mkokes
Created September 27, 2016 20:41
Show Gist options
  • Select an option

  • Save mkokes/d3cc01ae7dbd56e70ba26acd7bfe0595 to your computer and use it in GitHub Desktop.

Select an option

Save mkokes/d3cc01ae7dbd56e70ba26acd7bfe0595 to your computer and use it in GitHub Desktop.
Set a vimeo video to continually loop in a soliloquy slider
// Loop Vimeo Videos in Soliloquy
add_filter( 'soliloquy_vimeo_args', 'mdk_vimeo_sol_settings', 10, 3 );
function mdk_vimeo_sol_settings( $args ) {
$loop = array( 'loop' => 1 );
$args = array_merge( $args, $loop );
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment