How to find WordPress RSS feed URL

How to find WordPress RSS feed URL - CodeFlist

WordPress RSS feed URL makes it easy to subscribe to future content from a particular blog or a website. Once the user subscribes to your feed, the new content will automatically be delivered to them. This removes the effort to check a blog manually every day to know whether or not a new content has been published.

Sounds like it will be easier to follow a website with RSS feeds for WordPress. Isn’t it?

RSS feed URL gets added in multiple WordPress pages automatically. In this post, we will show you a list of RSS feeds present in our blog for a quick demonstration.

The RSS feeds can be found out in several ways. Some of the popular methods are listed below:

How to find WordPress RSS feed URL universally

This is the quickest method to find out the feed URL of the website. Whether you need to find URL for a domain, subdomain, or any folder, you just need to add /feed/ at the end of the URL.

For example, let’s see this on our website:

Domain: https://codeflist.com/feed 

Subdomain: https://demo.codeflist.com/feed/

Folder: https://codeflist.com/blog/feed/

In our website, you can check these RSS feeds to know the structure of our website. These are the feed URLs in some of our pages.

The RSS feed with the XML version is without any design. The feed subscribers will be able to check the styled feed with the help of different feed readers.

How to find WordPress RSS feed URL from the source code

You can check the source code of each webpage to check a meta tag that is related to the RSS feeds. There can be single or even multiple RSS feeds in your single webpage.

Follow these simple steps to find out: 

  • Open the page whose feed you want.
  • Right-Click and View Source or Simply Press Ctrl+U to open source code of that page in a new tab.
  • Press Control+F(Windows) or Command+F(MAC) to open the search window.
  • Search for the word “feed”
  • You will get the WordPress RSS feed URL inside the href =”” attribute

Have a look at the screenshot below.

How to find WordPress RSS feed URL from source code
How to find WordPress RSS feed URL from source code

WordPress RSS feed URL for different pages

You may know that WordPress adds RSS feed for comments and archives by default.

Comments  feed

The comments present in each post and page has an RSS feed URL.

You can check by adding /feed/ at the end of post URL.

Furthermore, if you want to check all the comments in one place, then the below feed is the specific feed for you.

Category and Tag feeds

Users can subscribe to a particular tag or category with the help of this feed.

Author feeds

Likewise, you can subscribe to a particular author.

Search box

The built-in search box helps to search for different terms in WordPress. WordPress creates a feed for it as well.

How to remove unwanted feed URLs

As Google has a limited crawl budget for every site, you need to be sure that you do not add any unnecessary WordPress RSS feed URL. If you are not using any active feed URLs, then it is better to remove them.

So, how will you remove them?

You can add a simple code to guide WordPress not to display URLs in your code.

If you want to remove the WordPress RSS feed URL from all your pages except main feed URL, then add the code written below:

remove_action( 'wp_head', 'feed_links', 2 );

remove_action('wp_head', 'feed_links_extra', 3 );

add_action('wp_head', 'addBackMainFeed'); function

addBackMainFeed() { echo '<link rel="alternate" 

type="application/rss+xml" title="RSS Feed" 

href="https://www.samplefeeddomain.com/feed/" />'; }

However, if you want to remove entire RSS feed URLs, then add the code written below:

remove_action( 'wp_head', 'feed_links', 2 ); 

remove_action('wp_head', 'feed_links_extra', 3 );

When you remove all the RSS feed, search engines will not crawl as they cannot see this code. You can add the above-mentioned code with the help of plugin or in functions.php file.

Creative Ways to use WordPress RSS feed URL

It is useful in order to subscribe to a website. You should use one of the feed readers so that you will be able to understand how it works. Some of the popular feed readers are Feedly. InnoReader, The Old Reader and Bloglovin’

Here are some of the creative things that you can do with feeds.

News Aggregator Site

RSS feed can be used in order to display news articles on different topics. As there are people who look after a particular niche, it would be a great idea.

Coupons and Discounts

When you follow the feeds that update about the latest offers, you will be able to grab the best deal when you catch the coupons and discounts.

Quotes

There are people searching for specific quotes. RSS feed will be useful for them.

Weather

Updates on weather will be effective in practice when a user will be able to know the local or international weather with the help of the feed service in a timely manner.

Online Stores

Online Stores can set up their RSS feed to notify their subscribers when there is an arrival of a new product or service.

Stocks and Exchange Rates

The international exchange rate is changing every day between currencies. That can also be a place where this service can be effective. In addition, the investment in the stock market is in a big amount and the likely minded people will be happy to subscribe to your feed.

Job Finder

RSS will be useful to collect information related to the job notice on the category that you are searching for.

Wrapping Up

WordPress RSS feed URL can be used to follow the websites you like. Furthermore, you can use RSS feed to enhance your own website.

Additional Readings