我为 wordpress 网站创建了一个小部件,我需要在函数中获取多个值并在网站上使用返回函数返回它们。如果我不使用返回码不会出现在 div 中
这是我的小部件代码
if($tweets) : foreach($tweets as $t) : ?>
<div class="vf-tweet">
<img src="<?php echo $t['image']; ?>" width="36" height="36" alt="" />
<div class="vf-tweet-inner">
<?php echo $t['text']; ?> |
<span class="vf-tweet-time"><?php echo human_time_diff($t['time'], current_time('timestamp')); ?> ago</span>
</div><!-- /vf-tweet-inner -->
</div>
<?php endforeach; ?>
<a href="http://twitter.com/#!/<?php echo $name; ?>">[ Follow us on Twitter ]</a>
<?php else : ?>
<p><?php _e('No tweets found.', 'vt-translate') ?></p>
<?php endif;
我需要使用返回函数来返回它,但我有点卡住了我不知道如何处理这个问题。