golden hour
/home/phakp/public_html/wp-content/plugins/stackable-ultimate-gutenberg-blocks/src/block/count-up
⬆️ Go Up
Upload
File/Folder
Size
Actions
block.json
516 B
Del
OK
index.php
503 B
Del
OK
Edit: index.php
<?php // Exit if accessed directly. if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! function_exists( 'stackable_load_countup_frontend_script' ) ) { function stackable_load_countup_frontend_script() { if ( ! is_admin() ) { wp_enqueue_script( 'stk-frontend-count-up', plugins_url( 'dist/frontend_block_count_up.js', STACKABLE_FILE ), array(), STACKABLE_VERSION, true ); } } add_action( 'stackable/count-up/enqueue_scripts', 'stackable_load_countup_frontend_script' ); }
Save