post-types
3 weeks ago
dummy-lightbox.php
3 weeks ago
error.php
3 weeks ago
header.php
3 weeks ago
light-box.php
3 weeks ago
like-box.php
3 weeks ago
load-more.php
3 weeks ago
preview-components.php
3 weeks ago
theme-styles.php
3 weeks ago
timeline.php
3 weeks ago
theme-styles.php
18 lines
| 1 | <?php |
| 2 | |
| 3 | if (! defined('ABSPATH')) { |
| 4 | exit; // Exit if accessed directly |
| 5 | } |
| 6 | |
| 7 | $file = get_stylesheet_uri(); |
| 8 | $theme_css = new \CustomFacebookFeed\Builder\CFF_Theme_CSS($file); |
| 9 | |
| 10 | if (! $theme_css->is_cached()) { |
| 11 | $theme_css->load_css(); |
| 12 | $theme_css->parse(); |
| 13 | $theme_css->find_styles(); |
| 14 | $theme_css->cache(); |
| 15 | } |
| 16 | |
| 17 | echo $theme_css->generate_style_html(); |
| 18 |