css
2 months ago
fonts
2 months ago
icons
2 months ago
plugin-icons
2 months ago
templates
4 years ago
README.md
2 months ago
fantasticonrc.js
2 months ago
icons-overview.html
2 months ago
loader.php
4 weeks ago
otgs-icons.php
4 weeks ago
register.php
4 weeks ago
register.php
11 lines
| 1 | <?php |
| 2 | |
| 3 | if ( ! function_exists( 'otgs_icons_register_assets' ) ) { |
| 4 | |
| 5 | function otgs_icons_register_assets( $assets_data, $assets_version ) { |
| 6 | define( 'OTGS_ASSETS_ICONS_STYLES', 'otgs-icons' ); |
| 7 | |
| 8 | wp_register_style( OTGS_ASSETS_ICONS_STYLES, $assets_data[ 'url' ] . '/css/otgs-icons.css', array(), $assets_version ); |
| 9 | } |
| 10 | |
| 11 | } |