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 |