| 1 |
<?php |
| 2 |
|
| 3 |
// Exit if accessed directly. |
| 4 |
defined( 'ABSPATH' ) || exit; |
| 5 |
|
| 6 |
if ( ! function_exists( 'qi_blocks_register_masonry_3rd_party_scripts' ) ) { |
| 7 |
/** |
| 8 |
* Function that set additional 3rd party scripts |
| 9 |
*/ |
| 10 |
function qi_blocks_register_masonry_3rd_party_scripts() { |
| 11 |
|
| 12 |
// Register masonry scripts |
| 13 |
wp_register_script( 'isotope', QI_BLOCKS_INC_URL_PATH . '/masonry/assets/plugins/isotope.pkgd.min.js', array( 'jquery' ), false, true ); |
| 14 |
wp_register_script( 'packery', QI_BLOCKS_INC_URL_PATH . '/masonry/assets/plugins/packery-mode.pkgd.min.js', array( 'jquery' ), false, true ); |
| 15 |
} |
| 16 |
|
| 17 |
add_action( 'qi_blocks_action_additional_3rd_party_scripts', 'qi_blocks_register_masonry_3rd_party_scripts' ); |
| 18 |
} |
| 19 |
|