PluginProbe ʕ •ᴥ•ʔ
Custom Twitter Feeds – A Tweets Widget or X Feed Widget / 2.8.0
Custom Twitter Feeds – A Tweets Widget or X Feed Widget v2.8.0
2.8.0 2.7.0 2.6.1 2.6.0 1.0 1.0.1 1.1 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.2 1.2.1 1.2.10 1.2.11 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3 1.4 1.4.1 1.5 1.5.1 1.6 1.6.1 1.7 1.8 1.8.1 1.8.2 1.8.3 1.8.4 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.1 2.1.1 2.1.2 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.3.0 2.3.1 2.5.4 2.5.5 trunk
custom-twitter-feeds / templates / feed.php
custom-twitter-feeds / templates Last commit date
actions.php 3 weeks ago author.php 3 weeks ago error.php 3 weeks ago feed.php 3 weeks ago footer.php 3 weeks ago header-generic.php 3 weeks ago header-text.php 3 weeks ago header.php 3 weeks ago item.php 3 weeks ago linkbox.php 3 weeks ago
feed.php
44 lines
1 <?php
2 /**
3 * Smash Balloon Custom Twitter Feeds Container 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
12 <!-- Custom Twitter Feeds by Smash Balloon -->
13 <div id="ctf" role="region" aria-label="<?php echo esc_attr__( 'Twitter Feed', 'custom-twitter-feeds' ) ?>" <?php echo $ctf_feed_classes ?> data-ctfshortcode="<?php echo $this->getShortCodeJSON() ?>" <?php echo $ctf_main_atts ?> data-ctfneeded="<?php echo esc_attr( $ctf_data_needed ) ?>">
14 <?php
15
16 do_action( 'ctf_before_feed_start', $this );
17
18 $showheader = ($feed_options['showheader'] === 'on' || $feed_options['showheader'] === 'true' || $feed_options['showheader'] === true);
19
20 if ($showheader || ctf_doing_customizer( $feed_options )) :
21 CTF_Display_Elements::display_header( $feed_options, $tweet_set );
22 endif;
23 ?>
24 <div class="ctf-tweets" role="list">
25 <?php $this->tweet_loop( $tweet_set, $feed_options, $is_pagination ); ?>
26 </div>
27 <?php
28 if ( $this->should_show_footer( $tweet_set ) ) {
29 include ctf_get_feed_template_part( 'footer', $feed_options );
30 }
31
32 /**
33 * Things to add before the closing "div" tag for the main feed element. Several
34 * features rely on this hook such as local images and some error messages
35 *
36 * @param object CTFFeedPro
37 * @param string $feed_id
38 *
39 * @since 1.8/1.13
40 */
41 do_action( 'ctf_before_feed_end', $this, $feed_id ); ?>
42
43 </div>
44