frontblocks-animations.css
2 years ago
frontblocks-animations.js
2 years ago
frontblocks-animations.php
2 years ago
frontblocks-animations.php
35 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Class Animations |
| 4 | * |
| 5 | * @package WordPress |
| 6 | * @author David Perez <david@close.technology> |
| 7 | * @copyright 2023 Closemarketing |
| 8 | * @version 1.0 |
| 9 | */ |
| 10 | |
| 11 | defined( 'ABSPATH' ) || exit; |
| 12 | |
| 13 | add_action( 'wp_enqueue_scripts', 'frbl_theme_scripts_animations', 99 ); |
| 14 | /** |
| 15 | * Loads Scripts |
| 16 | * |
| 17 | * @return void |
| 18 | */ |
| 19 | function frbl_theme_scripts_animations() { |
| 20 | wp_enqueue_style( |
| 21 | 'frontblocks-animations', |
| 22 | FRBL_PLUGIN_URL . 'includes/animations/frontblocks-animations.css', |
| 23 | array(), |
| 24 | FRBL_VERSION |
| 25 | ); |
| 26 | |
| 27 | wp_enqueue_script( |
| 28 | 'frontblocks-animations-custom', |
| 29 | FRBL_PLUGIN_URL . 'includes/animations/frontblocks-animations.js', |
| 30 | array(), |
| 31 | FRBL_VERSION, |
| 32 | true |
| 33 | ); |
| 34 | } |
| 35 |