Created
May 3, 2018 18:37
-
-
Save timelsass/6be8d8a413c2010880862cdcd1a262ab to your computer and use it in GitHub Desktop.
Add animate.css and WOW.js for content built with boldgrid page and post builder
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 | |
function crio_config( $config ) { | |
if ( ! is_plugin_active( 'boldgrid-editor/post-and-page-builder.php' ) ) { | |
$config['scripts']['animate-css'] = true; | |
$config['scripts']['wow-js'] = true; | |
} | |
} | |
add_filter( 'boldgrid_theme_framework_config', 'crio_config', 11 ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment