Exemple #1
0
    function widget($args, $instance)
    {
        extract($args);
        $title = apply_filters('widget_title', $instance['title']);
        $notweets = $instance['notweets'];
        // Output
        echo $before_widget;
        echo $before_title . $title . $after_title;
        $username = ot_get_option('twitter_bar_username');
        ?>
		<ul>
			<?php 
        echo get_theme_tweets($username, ot_get_option('twitter_bar_consumerkey'), ot_get_option('twitter_bar_consumersecret'), ot_get_option('twitter_bar_accesstoken'), ot_get_option('twitter_bar_accesstokensecret'), $notweets);
        ?>
		</ul>
		<a href="http://twitter.com/<?php 
        echo ot_get_option('twitter_bar_username');
        ?>
" class="btn small twitter" target="_blank"><i class="icon-budicon-841"></i> <?php 
        _e('Follow <strong>@' . $username . '</strong>', THB_THEME_NAME);
        ?>
 <i class="fa fa-twitter"></i></a>
		<?php 
        echo $after_widget;
    }
Exemple #2
0
function thb_twitter($atts, $content = null)
{
    extract(shortcode_atts(array('username' => 'anteksiler', 'count' => '3', 'style' => 'dark'), $atts));
    ob_start();
    ?>
 	<aside class="twitter_container <?php 
    echo $style;
    ?>
">
 		<i class="fa fa-twitter"></i>
		<div class="carousel owl <?php 
    echo $style;
    ?>
" data-columns="1" data-navigation="false" data-pagination="true">
	
				<?php 
    echo get_theme_tweets($username, ot_get_option('twitter_bar_consumerkey'), ot_get_option('twitter_bar_consumersecret'), ot_get_option('twitter_bar_accesstoken'), ot_get_option('twitter_bar_accesstokensecret'), $count);
    ?>
		</div>
		<a href="http://twitter.com/<?php 
    echo $username;
    ?>
">@<?php 
    echo $username;
    ?>
</a>
	</aside>
	<?php 
    $out = ob_get_contents();
    if (ob_get_contents()) {
        ob_end_clean();
    }
    return $out;
}