actions.php
1 month ago
author.php
1 month ago
error.php
1 month ago
feed.php
1 month ago
footer.php
1 month ago
header-generic.php
1 month ago
header-text.php
1 month ago
header.php
1 month ago
item.php
1 month ago
linkbox.php
1 month ago
header-text.php
16 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Smash Balloon Custom Twitter Feeds Generic Header Template |
| 4 | * Information about the hashtag or search |
| 5 | * |
| 6 | * @version 2.0.4 Custom Twitter Feeds by Smash Balloon |
| 7 | * |
| 8 | */ |
| 9 | use TwitterFeed\CTF_Parse; |
| 10 | use TwitterFeed\CTF_Display_Elements; |
| 11 | |
| 12 | $header_attr = CTF_Display_Elements::get_element_attribute( 'header-text', $feed_options ); |
| 13 | ?> |
| 14 | <div class="ctf-header ctf-header-type-text" <?php echo $header_attr ?>> |
| 15 | <?php echo wp_kses_post( $feed_options['customheadertext'] ); ?> |
| 16 | </div> |