PluginProbe
Code Embed / 2.4
Code Embed v2.4
2.6.4 2.6.3 2.6.2 2.6.1 trunk 1.0 1.1 1.2 1.3 1.4.1 1.5.1 1.6.1 2.0.2 2.1.2 2.2.2 2.3.9 2.4 2.5.1 2.5.2 2.6
simple-embed-code / includes / add-scripts.php

add-scripts.php in Code Embed 2.4, at includes/add-scripts.php

23 lines 413 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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