Created
June 21, 2022 21:04
-
-
Save kylephillips/2b975b538fddf349b57ea76d1babbb78 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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