使用WordPress显示您最喜爱的推文

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用WordPress显示您最喜爱的推文相关的知识,希望对你有一定的参考价值。

Just replace the URL in the fetch_rss line below with the RSS feed to your Twitter favorites. In fact this will work with any RSS feed.
  1. <?php
  2. include_once(ABSPATH . WPINC . '/feed.php');
  3. $rss = fetch_feed('http://twitter.com/favorites/793830.rss');
  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显示您最喜爱的推文的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress - 将代码片段包含到布局的选定部分的插件

WordPress快捷码:仅向注册用户显示内容

markdown 在WordPress中使用jQuery代码片段

markdown WordPress片段:使用WP CLI检查数据库

ZRender实现粒子网格动画实战

使用 Twitter 流 API,是不是可以只显示来自特定用户的推文?