PluginProbe ʕ •ᴥ•ʔ
AlphaListing / trunk
AlphaListing vtrunk
trunk 4.3.4 4.3.5 4.3.6 4.3.7 4.4.0
alphalisting / functions / scripts.php
alphalisting / functions Last commit date
enqueues.php 1 month ago health-check.php 9 months ago helpers.php 1 month ago scripts.php 1 month ago styles.php 1 month ago
scripts.php
23 lines
1 <?php
2 /**
3 * JavaScript enqueueing functions.
4 *
5 * @package alphalisting
6 */
7
8 declare(strict_types=1);
9
10 if ( ! defined( 'ABSPATH' ) ) {
11 exit;
12 }
13
14 /**
15 * Enqueue the widget configuration support script
16 *
17 * @since 2.1.0
18 * @return void
19 */
20 function alphalisting_enqueue_widget_admin_script() {
21 wp_enqueue_script( 'alphalisting-widget-admin' );
22 }
23