PluginProbe ʕ •ᴥ•ʔ
FrontBlocks for Gutenberg/GeneratePress / 0.2.5
FrontBlocks for Gutenberg/GeneratePress v0.2.5
trunk 0.2.0 0.2.1 0.2.2 0.2.3 0.2.4 0.2.5 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.1.0 1.2.0 1.2.1 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 ci-artifacts
frontblocks / includes / animations / frontblocks-animations.php
frontblocks / includes / animations Last commit date
frontblocks-animations.css 2 years ago frontblocks-animations.js 2 years ago frontblocks-animations.php 1 year ago
frontblocks-animations.php
37 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 $dist_dir = WP_DEBUG ? 'animations/' : 'dist/';
21
22 wp_enqueue_style(
23 'frontblocks-animations',
24 FRBL_PLUGIN_URL . 'includes/' . $dist_dir . 'frontblocks-animations.css',
25 array(),
26 FRBL_VERSION
27 );
28
29 wp_enqueue_script(
30 'frontblocks-animations-custom',
31 FRBL_PLUGIN_URL . 'includes/' . $dist_dir . 'frontblocks-animations.js',
32 array(),
33 FRBL_VERSION,
34 true
35 );
36 }
37