|
1
|
<?php |
|
2
|
$file = get_stylesheet_uri(); |
|
3
|
$theme_css = new \TwitterFeed\Builder\CTF_Theme_CSS( $file ); |
|
4
|
|
|
5
|
if ( ! $theme_css->is_cached() ) { |
|
6
|
$theme_css->load_css(); |
|
7
|
$theme_css->parse(); |
|
8
|
$theme_css->find_styles(); |
|
9
|
$theme_css->cache(); |
|
10
|
} |
|
11
|
|
|
12
|
echo $theme_css->generate_style_html();
|