Skip to content

Instantly share code, notes, and snippets.

@blakewilson
Created February 18, 2018 20:47
Show Gist options
  • Save blakewilson/af1c2ca5b18400be3f16ff3fd7a10402 to your computer and use it in GitHub Desktop.
Save blakewilson/af1c2ca5b18400be3f16ff3fd7a10402 to your computer and use it in GitHub Desktop.
Define Video Background Pro Dependencies
<?php
/**
* Define Video Background Pro's Script Dependencies
*
* @since 2.2.0
* @author Push Labs
* @param Array $deps The dependencies for the Video Background Pro plugin
* @return Array $deps
*/
function themeprefix_vidbgpro_deps( $deps ) {
$deps = array( 'jquery' );
return $deps;
}
add_filter( 'vidbgpro_script_deps', 'themeprefix_vidbgpro_deps' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment