| 1 |
<?php |
| 2 |
/** |
| 3 |
* Add CSS scripts |
| 4 |
* |
| 5 |
* Add CSS to the main theme. |
| 6 |
* |
| 7 |
* @package simple-embed-code |
| 8 |
*/ |
| 9 |
|
| 10 |
// Exit if accessed directly. |
| 11 |
|
| 12 |
if ( ! defined( 'ABSPATH' ) ) { |
| 13 |
exit; |
| 14 |
} |
| 15 |
|
| 16 |
/** |
| 17 |
* Add styles to theme |
| 18 |
* |
| 19 |
* Registers and enqueues the responsive video container stylesheet. |
| 20 |
*/ |
| 21 |
function code_embed_css_scripts() { |
| 22 |
|
| 23 |
wp_register_style( 'code_embed_responsive', plugins_url( 'css/video-container.min.css', __DIR__ ), array(), CODE_EMBED_VERSION ); |
| 24 |
|
| 25 |
wp_enqueue_style( 'code_embed_responsive' ); |
| 26 |
} |
| 27 |
|
| 28 |
add_action( 'wp_enqueue_scripts', 'code_embed_css_scripts' ); |
| 29 |
|