1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<?php
add_action( 'wp_enqueue_scripts', function () { $assets = array(); $asset_file = wpcf7_plugin_path( 'includes/swv/js/index.asset.php' );
if ( file_exists( $asset_file ) ) { $assets = include( $asset_file ); }
$assets = wp_parse_args( $assets, array( 'src' => wpcf7_plugin_url( 'includes/swv/js/index.js' ), 'dependencies' => array(), 'version' => WPCF7_VERSION, 'in_footer' => true, ) );
wp_register_script( 'swv', $assets['src'], $assets['dependencies'], $assets['version'], $assets['in_footer'] ); }, 10, 0 );
|