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
footer.php
20 lines
| 1 | <?php |
| 2 | /** |
| 3 | * Smash Balloon Custom Twitter Feeds Footer Template |
| 4 | * Information about the person tweeting, replying, or quoting |
| 5 | * |
| 6 | * @version 2.0.4 Custom Twitter Feeds by Smash Balloon |
| 7 | * |
| 8 | */ |
| 9 | use TwitterFeed\CTF_Display_Elements; |
| 10 | |
| 11 | $loadmore_attr = CTF_Display_Elements::get_element_attribute( 'loadmore', $feed_options ); |
| 12 | ?> |
| 13 | |
| 14 | <?php if (( filter_var($feed_options['showbutton'], FILTER_VALIDATE_BOOLEAN) == true) || ctf_doing_customizer( $feed_options )) : ?> |
| 15 | <a href="javascript:void(0);" id="ctf-more" class="ctf-more" <?php echo $loadmore_attr ?>><span><?php echo esc_html( $feed_options['buttontext'] ) ?></span></a> |
| 16 | <?php endif; ?> |
| 17 | |
| 18 | <?php if ($options['creditctf']): ?> |
| 19 | <div class="ctf-credit-link"><a href="https://smashballoon.com/custom-twitter-feeds/?utm_campaign=twitter-free&utm_source=frontend&utm_medium=credit" target="_blank" rel="noopener noreferrer"><?php echo ctf_get_fa_el( 'fa-twitter' ) ?>Custom Twitter Feeds Plugin</a></div> |
| 20 | <?php endif; ?> |