Skip to content

Instantly share code, notes, and snippets.

@timelsass
Created May 3, 2018 18:37
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 timelsass/6be8d8a413c2010880862cdcd1a262ab to your computer and use it in GitHub Desktop.
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
<?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