Skip to content

Instantly share code, notes, and snippets.

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 kylephillips/2b975b538fddf349b57ea76d1babbb78 to your computer and use it in GitHub Desktop.
Save kylephillips/2b975b538fddf349b57ea76d1babbb78 to your computer and use it in GitHub Desktop.
<?php
add_filter('wp_block_animations_script_dependencies', 'blockAnimationDependencies);
/**
* We are adding our custom script containing our addFilter reference to the plugin dependencies.
* This way, we ensure the plugin scripts run after we add our filter
*/
function blockAnimationDependencies($deps)
{
$deps[] = 'custom-script-handle';
return $deps;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment