add-scripts.php in Code Embed 2.5.2, at includes/add-scripts.php
| 1 | <?php |
| 2 | /** |
| 3 | * Add Scripts |
| 4 | * |
| 5 | * Add CSS to the main theme |
| 6 | * |
| 7 | * @package simple-embed-code |
| 8 | */ |
| 9 | |
| 10 | /** |
| 11 | * Add scripts to theme |
| 12 | * |
| 13 | * Add styles to the main theme |
| 14 | */ |
| 15 | function ce_main_scripts() { |
| 16 | |
| 17 | wp_register_style( 'ce_responsive', plugins_url( 'css/video-container.min.css', __DIR__ ), array(), CODE_EMBED_VERSION ); |
| 18 | |
| 19 | wp_enqueue_style( 'ce_responsive' ); |
| 20 | } |
| 21 | |
| 22 | add_action( 'wp_enqueue_scripts', 'ce_main_scripts' ); |
| 23 |