[Plugin: WordPress RSS Shortcode] Limit RSS Feed Quantity
-
Hi, I’m using the WordPress RSS Shortcode plugin and I am wondering how I can limit the quantity of posts that come in. So far I don’t see this option and I’ve googled how to do modify the code myself with no luck. Thanks in advance!
This is the code so far:
function rsstag($atts) { $atts = shortcode_atts(array( 'url' => get_bloginfo('rss2_url'), 'show_author' => 0, 'show_date' => 1, 'show_summary' => 0 ), $atts); //var_dump($atts); ob_start(); wp_widget_rss_output($atts['url'], $atts); $rss = ob_get_contents(); ob_end_clean(); return $rss; } add_shortcode('rsstag', 'rsstag');
https://www.ads-software.com/extend/plugins/wordpress-rss-shortcode/
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘[Plugin: WordPress RSS Shortcode] Limit RSS Feed Quantity’ is closed to new replies.