在Wordpress中显示Twitter提要

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在Wordpress中显示Twitter提要相关的知识,希望对你有一定的参考价值。

Displaying your latest tweets is a good way to encourage people to follow you on Twitter. The most common place to display tweets is in the sidebar, although you can add them to any area of the website.
  1. <?php
  2. include_once(ABSPATH . WPINC . '/feed.php');
  3. $rss = fetch_feed('https://api.twitter.com/1/statuses/user_timeline.rss?screen_name=smashingmag');
  4. $maxitems = $rss->get_item_quantity(3);
  5. $rss_items = $rss->get_items(0, $maxitems);
  6. ?>
  7.  
  8. <ul>
  9. <?php if ($maxitems == 0) echo '<li>No items.</li>';
  10. else
  11. // Loop through each feed item and display each item as a hyperlink.
  12. foreach ( $rss_items as $item ) : ?>
  13. <li>
  14. <a href='<?php echo $item->get_permalink(); ?>'>
  15. <?php echo $item->get_title(); ?>
  16. </a>
  17. </li>
  18. <?php endforeach; ?>
  19. </ul>

以上是关于在Wordpress中显示Twitter提要的主要内容,如果未能解决你的问题,请参考以下文章

显示 Twitter 提要停止工作

Twitter api 1.1 图片未显示在提要中

RSS 提要未在我的 Wordpress 提要中的 Mailchimp 时事通讯中显示图像

Twitter RSS提要解析器,用于在网站上显示tweet(包括缓存)

iOS 应用程序中的 Twitter 提要 - 我如何仅从我自己的帐户获取列表提要 [无需应用用户登录 Twitter]

在基于Wordpress的网站中显示Twitter关注者的数量