Created
November 15, 2012 22:42
-
-
Save Pleiades/4082004 to your computer and use it in GitHub Desktop.
Embed an RSS Feed
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
include_once(ABSPATH.WPINC.'/rss.php'); | |
function readRss($atts) { | |
extract(shortcode_atts(array( | |
"feed" => 'http://', | |
"num" => '1', | |
), $atts)); | |
return wp_rss($feed, $num); | |
} | |
add_shortcode('rss', 'readRss'); |
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
[rss feed="http://feeds.feedburner.com/webdesigntutsplus" num="3"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment