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