| 1 |
<?php |
| 2 |
/** |
| 3 |
* Interactive modules. |
| 4 |
* |
| 5 |
* @package Gutenberg |
| 6 |
* @subpackage Interactivity API |
| 7 |
*/ |
| 8 |
|
| 9 |
/** |
| 10 |
* Register the `@wordpress/interactivity` module. |
| 11 |
*/ |
| 12 |
function gutenberg_register_interactivity_module() { |
| 13 |
gutenberg_register_module( |
| 14 |
'@wordpress/interactivity', |
| 15 |
gutenberg_url( '/build/interactivity/index.min.js' ), |
| 16 |
array(), |
| 17 |
defined( 'GUTENBERG_VERSION' ) ? GUTENBERG_VERSION : get_bloginfo( 'version' ) |
| 18 |
); |
| 19 |
} |
| 20 |
|
| 21 |
add_action( 'wp_enqueue_scripts', 'gutenberg_register_interactivity_module' ); |
| 22 |
|