Recently a Managed WordPress owner raised a question about how to force an immediate update to RSS feeds in WordPress. Is there a way to force RSS feed update on my website? My problem is after I have made changes to a blog post? I have noticed that once the content is published, the RSS … Continue reading How To Force Instant RSS Feed Update in WordPress?→
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→
By default only in-post images are send to RSS feed. In this lesson you will learn how to send featured post images i.e. post thumbnails in RSS feed of your WordPress based website or blog.
By default WordPress automatically generates RSS feed for every post type, tag, category and other archive types. This results in unnecessary load on your website. In this lesson we will show you how you can disable all unnecessary RSS feeds and promote your main RSS.
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?→
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→
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.
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.
Using Orbital Feed Reader plugin you can easily add a new admin panel in WordPress dashboard just for subscribing and reading RSS feeds from your favorite website.
You can easily change the appearance of RSS feed in your WordPress site. For Example: You can add images, read more link, category list, tag list and any custom code before or after the RSS feed items.
You can easily customize your WordPress site’s RSS feed by adding custom links, copyright information and other HTML at the top or bottom of your WordPress based site’s RSS feed.
This tutorial is on usage of a powerful and very popular WordPress plugin that lets you add the first image of a your postto your feeds, even if you are only displaying post excerpts.
By default WordPress RSS feed include only posts not pages. WordPress lets you change post RSS settings to send full blog post or just a summary in your feeds. This tutorial is about a simple WordPress plugin that lets you modify RSSfeeds to include pages and posts both in your feeds.
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→
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 ?→
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 ?→
WordPress provides feed form different elements like Tags, Authors, Comments and Categories. If you are blogging on may topics then you may provide your reader with feed of each topic so that their don’t get notified for the content they don’t like to read.
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→