Created
January 31, 2023 00:19
-
-
Save jackfearing/b1cb997a3202c39e8d7378babc159339 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
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. | |
*/ | |
// 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. | |
<?php | |
include_once(ABSPATH . WPINC . '/feed.php'); | |
$rss = fetch_feed('http://twitter.com/favorites/793830.rss'); | |
$maxitems = $rss->get_item_quantity(3); | |
$rss_items = $rss->get_items(0, $maxitems); | |
?> | |
<ul> | |
<?php if ($maxitems == 0) echo '<li>No items.</li>'; | |
else | |
// Loop through each feed item and display each item as a hyperlink. | |
foreach ( $rss_items as $item ) : ?> | |
<li> | |
<a href='<?php echo $item->get_permalink(); ?>'> | |
<?php echo $item->get_title(); ?> | |
</a> | |
</li> | |
<?php endforeach; ?> | |
</ul> | |
or | |
// Will allow users to specify custom rss from facebook, twitter or where ever. | |
<?php // Get RSS Feed(s) | |
include_once(ABSPATH . WPINC . '/rss.php'); | |
$feeds = get_post_meta($post->ID, 'feeds',true); | |
$rss = fetch_rss('$feeds'); | |
$maxitems = 5; | |
$items = array_slice($rss->items,0,$maxitems); | |
?> | |
<ul> | |
<?php | |
if (empty($items)) | |
echo '<li>No items</li>'; | |
else | |
foreach ( $items as $item ) : ?> | |
<li> | |
<a href='<?php echo $item['link']; ?>' title='<?php echo $item['title']; ?>'><?php echo $item['title']; ?> </a> | |
</li> | |
<?php endforeach; ?> | |
</ul> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment