web/wp-content/plugins/twitter-tools/views/tweet-list.php
author Anthony Ly <anthonyly.com@gmail.com>
Mon, 03 Dec 2012 16:30:36 -0800
changeset 195 c7c0fbc09788
parent 194 32102edaa81b
permissions -rw-r--r--
ajout du plugin Duplicator

<div class="aktt_tweets">
	<ul>
<?php
if (count($tweets) > 0) {
	foreach ($tweets as $tweet) {
		echo '		<li>'."\n";
		include(AKTT_PATH.'/views/tweet.php');
		echo '</li>'."\n";
	}
}
else {
?>
		<li><?php _e('No tweets available at the moment.', 'twitter-tools'); ?></li>
<?php
}
?>
	</ul>
</div>