Including WordPress Pages In RSS Feed Of Your Website

A feed is a function of special software that allows feedreaders to access any website’s new content, then posting the information about latest content and updates to another website. It simply provides a way for users to keep up with the latest information posted on different blogging sites. By default, main RSS feed of any WordPress … Continue reading Including WordPress Pages In RSS Feed Of Your Website

How To Create An RSSJS Feed For WordPress?

RSS, or “Really Simple Syndication” is a format for distributing and gathering dynamically generated content from sources across the Internet, including newspapers, magazines, and blogs. RSSJS, or “RSS To Javascript“, allows you to display this content within your own web pages and to do so without having to possess any XML knowledge or skills. RSSJS … Continue reading How To Create An RSSJS Feed For WordPress?

Virtual Posts: Show Any RSS Feed Content As Own Post In WordPress

You can display any feed content as your own post content in your WordPress site. Virtual Posts is the new plugin that can publish virtual posts from any feed and instead of creating post copies it creates it’s own “virtual” posts and shows the feed content as a post. First install and activate Virtual Posts … Continue reading Virtual Posts: Show Any RSS Feed Content As Own Post In WordPress

Beautiful jQuery Newsboard & RSS Feed Auto-Scroller For WordPress

NewsBoard is a beautiful jQuery powered News and RSS feed autoscroller plugin that comes in both free and premium versions. Using this WordPress Plugin you can easily autoscroll your latest blog posts, most commented posts, posts from selected categories and there are some more good options. View Live Demo | Watch the YouTube video.

How To Display Follow RSS On Feedly Button In WordPress ?

Google Reader has been already powered down. Feedly is a good RSS reading service that is increasingly getting popular these days. This tutorial is on new WordPress plugin called Add to Feedly. The plugin activates a simple sidebar widget that lets you to show a beautiful “Follow on Feedly” banner in your WordPress based website.

Awesome RSS Widget For Displaying Feeds Using Various Beautiful Styles In WordPress

Ever thought of displaying RSS feed using different awesome beautiful style like using a news ticker effect with thumbnails or displaying multiple tabbed RSS feeds and other customizable options for color styles and more. This article is about a popular WordPress widget plugin that allows you to do all these thing very easily. Super RSS … Continue reading Awesome RSS Widget For Displaying Feeds Using Various Beautiful Styles In WordPress

How To Provide Specific Category RSS Feed Subscription Option In WordPress ?

WordPress provides you specific feed for different elements like Tags, Authors, Comments and Categories etc, we havealready discussed about grabbing each WordPress feed manually or adding their link to your website so that your visitors can subscribe them. This tutorial explains you about a free plugin that allows you to easily add Category Specific RSS feed subscription menu to your … Continue reading How To Provide Specific Category RSS Feed Subscription Option In WordPress ?

How To Change RSS Settings In WordPress And Burn Your Feed Using FeedBurner ?

Changing RSS settings and adding your blog’s feed in FeedBurner is a common and important thing that most of the WordPress bloggers do after installing WordPress. You can easily edit your default RSS settings in WordPress by visiting Dashboard -> Settings -> Reading page. Scroll down to RSS section and you can change the number … Continue reading How To Change RSS Settings In WordPress And Burn Your Feed Using FeedBurner ?

Embedding RSS Feed In Your WordPress Posts And Pages

Open Your themes function.php and add the following code at the bottom: 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’); Save function.php and whenever you need to embed RSS in any of your post or page write the following short code inside your post: … Continue reading Embedding RSS Feed In Your WordPress Posts And Pages