{"id":336,"date":"2021-12-23T19:36:23","date_gmt":"2021-12-23T14:06:23","guid":{"rendered":"https:\/\/hostkicker.com\/blog\/?p=336"},"modified":"2022-05-17T11:38:37","modified_gmt":"2022-05-17T06:08:37","slug":"how-to-customize-wordpress-rss-feeds","status":"publish","type":"post","link":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/","title":{"rendered":"How to Customize WordPress RSS Feeds"},"content":{"rendered":"<p><span data-preserver-spaces=\"true\">If you have a WordPress website. You indeed publish new articles or post daily or weekly for your users. Then you have to present them in front of your users. For this, you have a good option of RSS feed. <\/span><\/p>\n<p><span data-preserver-spaces=\"true\">RSS feed is designed to show recent content and deliver it to the users. <\/span><span data-preserver-spaces=\"true\">It allows users and applications to get regular updates from a blog or website they like. It is an XML text file containing the site&#8217;s updated information, which gets plugged into a feed reader that users can subscribe to.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\"> Moreover, the RSS feed allows users to track their favorite websites without visiting each site manually. <\/span><span data-preserver-spaces=\"true\">The WordPress RSS feeds shows your recent post content by default, but you can not customize that content for your RSS feed users.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Here, we will explain How to Customize WordPress RSS Feeds. And how to add content easily and control your WordPress RSS feeds.<\/span><\/p>\n<h2><span data-preserver-spaces=\"true\">Adding Custom Content to WordPress RSS Feeds\u00a0<\/span><\/h2>\n<p><span data-preserver-spaces=\"true\">You can add custom content to your WordPress RSS feed by using a plugin. It is the easiest and simplest way to add custom content to the WordPress RSS feed.<\/span><\/p>\n<h3><span data-preserver-spaces=\"true\"><strong> The All in One SEO<\/strong> <strong>Plugin<\/strong> <\/span><\/h3>\n<p><span data-preserver-spaces=\"true\">It is the best WordPress SEO plugin that easily optimizes your website SEO.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Now, install and activate the All in One SEO for WordPress plugin.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Go to plugins &gt;&gt; add new &gt;&gt; All in One SEO for WordPress plugin &gt;&gt; install &gt;&gt; activate.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">After activation, set up All in One SEO for WordPress.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">After that, go to All in One SEO \u00bb General Settings page &gt;&gt; switch to the RSS Content tab.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-338\" src=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/rssfeed-content.png\" alt=\"\" width=\"550\" height=\"338\" srcset=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/rssfeed-content.png 550w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/rssfeed-content-300x184.png 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/p>\n<p><span data-preserver-spaces=\"true\">You can add content you want to display before and after each RSS feed. You can also use tags to add links and other metadata to the custom content.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-340\" src=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/rssfeed-post-content.png\" alt=\"\" width=\"550\" height=\"315\" srcset=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/rssfeed-post-content.png 550w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/rssfeed-post-content-300x172.png 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/p>\n<p><span data-preserver-spaces=\"true\">After the changes, click the save button. All in One SEO will add custom content to every RSS feed.<\/span><\/p>\n<h2><span data-preserver-spaces=\"true\">Add Content to WordPress RSS Feed using Code.<\/span><\/h2>\n<p><span data-preserver-spaces=\"true\">The above-stated method is the easiest way to add custom content to WordPress. However, it adds the content to all articles in your WordPress feed.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">There are times you want to add content to specific posts. You can do this with some simple steps that will help you add content to your RSS feed using custom code snippets.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">You can add the code to your website using the custom Code Snippets plugin through a functions.php file.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Let us see some examples of manually adding custom content in WordPress RSS feeds.<\/span><\/p>\n<h3><strong><span data-preserver-spaces=\"true\">1. Add Custom Field Data to WordPress RSS Feeds<\/span><\/strong><\/h3>\n<p><span data-preserver-spaces=\"true\">The Custom fields option in WordPress allows adding extra metadata to WordPress posts. But, this metadata does not come under RSS feeds by default.<\/span><\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-342\" src=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/customfields.png\" alt=\"\" width=\"550\" height=\"266\" srcset=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/customfields.png 550w, https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/customfields-300x145.png 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/p>\n<p><span data-preserver-spaces=\"true\">You can use the given code to retrieve and show custom field data in your WordPress RSS feed.<\/span><\/p>\n<pre><span data-preserver-spaces=\"true\"> function wpb_rsstutorial_customfield($content) {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">global $wp_query;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$postid = $wp_query-&gt;post-&gt;ID;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$custom_metadata = get_post_meta($postid, 'my_custom_field', true);<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">if(is_feed()) {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">if($custom_metadata !== '') {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">\/\/ Display custom field data below content<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$content = $content.\"&lt;br \/&gt;&lt;br \/&gt;&lt;div&gt;\".$custom_metadata.\"&lt;\/div&gt;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">\";<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">else {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$content = $content;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">return $content;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">add_filter('the_excerpt_rss', 'wpb_rsstutorial_customfield');<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">add_filter('the_content', 'wpb_rsstutorial_customfield');<\/span><\/pre>\n<p><span data-preserver-spaces=\"true\">The above code checks if the custom field has data inside and displays the RSS feed. After that, it simply adds custom field data below the content.<\/span><\/p>\n<h3><strong><span data-preserver-spaces=\"true\">2. Additional Text to Post Titles in RSS feed<\/span><\/strong><\/h3>\n<p><span data-preserver-spaces=\"true\">If you have to show additional text to some post titles in the RSS feed, Below is how to add custom content to post titles.<\/span><\/p>\n<p><strong>Example 1: Adding up Data from Custom Fields to Post Title in RSS Feed\u00a0<\/strong><\/p>\n<p><span data-preserver-spaces=\"true\">First, save the content you want to display as a custom field. Then, you can add the following code to your website.<\/span><\/p>\n<pre><span data-preserver-spaces=\"true\"> function wpb_rsstutorial_addtitle($content) {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">global $wp_query;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$postid = $wp_query-&gt;post-&gt;ID;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$gpost = get_post_meta($postid, 'guest_post', true);<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$spost = get_post_meta($postid, 'sponsored_post', true);<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">\u00a0\u00a0<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">if($gpost !== '') {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$content = 'Guest Post: '.$content;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">elseif ($spost !== ''){<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$content = 'Sponsored Post: '.$content;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">else {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$content = $content;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">return $content;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">add_filter('the_title_rss', 'wpb_rsstutorial_addtitle');<\/span><\/pre>\n<p><span data-preserver-spaces=\"true\">The code examines the custom fields. If they are not empty, it appends the value of the custom field to the post title in your RSS feed.<\/span><\/p>\n<p><strong><span data-preserver-spaces=\"true\">Example 2: Category Name to Post Title in RSS Feed<\/span><\/strong><\/p>\n<p><span data-preserver-spaces=\"true\">For this example, If you want to show category name in post&#8217;s title.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">Add the following code to your website:<\/span><\/p>\n<pre><span data-preserver-spaces=\"true\"> function wpb_rsstutorial_titlecat($content) {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$postcat = \"\";<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">foreach((get_the_category()) as $cat) {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$postcat .= ' ('.$cat-&gt;cat_name . ')';<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$content = $content.$postcat;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">return $content;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">add_filter('the_title_rss', 'wpb_rsstutorial_titlecat');<\/span><\/pre>\n<p><span data-preserver-spaces=\"true\">\u00a0The above code will display categories with post titles in RSS feeds.<\/span><\/p>\n<h3><strong><span data-preserver-spaces=\"true\">3. Add Custom Content to Posts with Categories or tags.<\/span><\/strong><\/h3>\n<p><span data-preserver-spaces=\"true\">Now, If you have to add the custom content only for posts under particular categories or tags.<\/span><\/p>\n<p><span data-preserver-spaces=\"true\">you can use the following code<\/span><\/p>\n<pre> function wpb_rsstutorial_taxonomies($content) {\r\n\r\n\u00a0\r\n\r\nif( is_feed() ){\r\n\r\n\u00a0\r\n\r\n\/\/ Check for posts filed under these categories\r\n\r\nif ( has_term( array( 'travel', 'news' ), 'category' ) ) {\r\n\r\n\u00a0\r\n\r\n$content = $content.\"&lt;br \/&gt;&lt;br \/&gt;For special offers please visit our website\";\u00a0\r\n\r\n\u00a0\r\n\r\n}\r\n\r\n}\r\n\r\nreturn $content;\r\n\r\n}\r\n\r\nadd_filter('the_excerpt_rss', 'wpb_rsstutorial_taxonomies');\r\n\r\nadd_filter('the_content', 'wpb_rsstutorial_taxonomies');\r\n<\/pre>\n<p>If you want to modify this, you can change the code to target tags. An example of targeting specific tags is below:<\/p>\n<pre>\r\nfunction wpb_rsstutorial_taxonomies($content) {\r\n\r\n\u00a0\r\n\r\nif( is_feed() ){\r\n\r\n\u00a0\r\n\r\n\/\/ Check for posts filed under these categories\r\n\r\nif ( has_term( array( 'holidays', 'blackfriday' ), 'post_tag' ) ) {\r\n\r\n\u00a0\r\n\r\n$content = $content.\"&lt;br \/&gt;&lt;br \/&gt;For special offers please visit our website\";\u00a0\r\n\r\n\u00a0\r\n\r\n}\r\n\r\n}\r\n\r\nreturn $content;\r\n\r\n}\r\n\r\nadd_filter('the_excerpt_rss', 'wpb_rsstutorial_taxonomies');\r\n\r\n<span data-preserver-spaces=\"true\">add_filter('the_content', 'wpb_rsstutorial_taxonomies<strong>');<\/strong>\r\n<\/span><\/pre>\n<h3><span data-preserver-spaces=\"true\">4. <\/span><strong><span data-preserver-spaces=\"true\">Adding Featured Image <\/span><\/strong><\/h3>\n<p><span data-preserver-spaces=\"true\">\u00a0WordPress RSS feed does not display featured images for your post by default. You can add it manually to your RSS feed.<\/span><\/p>\n<pre><span data-preserver-spaces=\"true\"> function wpb_rsstutorial_featuredimage($content) {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">global $post;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">if(has_post_thumbnail($post-&gt;ID)) {<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">$content = '&lt;p&gt;' . get_the_post_thumbnail($post-&gt;ID) .<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">'&lt;\/p&gt;' . get_the_content();<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">return $content;<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">}<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">add_filter('the_excerpt_rss', 'wpb_rsstutorial_featuredimage');<\/span>\r\n\r\n<span data-preserver-spaces=\"true\">add_filter('the_content_feed', 'wpb_rsstutorial_featuredimage');<\/span><\/pre>\n<p><span data-preserver-spaces=\"true\">The code checks if a post has a featured image and shows it with the rest of your post content.<\/span><\/p>\n<p><strong>To wrap up<\/strong>, In this article, you have learned\u00a0 How to Customize WordPress RSS Feeds by different methods.<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If you have a WordPress website. You indeed publish new articles or post daily or weekly for your users. Then you have to present them in front of your users. For this, you have a good option of RSS feed. RSS feed is designed to show recent content and deliver it to the users. It [&hellip;]<\/p>\n","protected":false},"author":4,"featured_media":346,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-336","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-wp-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v19.3 (Yoast SEO v27.5) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Customize WordPress RSS Feeds<\/title>\n<meta name=\"description\" content=\"In this article you have learned How to Customize WordPress RSS Feeds. Also, how you can add content and control your WordPress RSS feeds.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Customize WordPress RSS Feeds\" \/>\n<meta property=\"og:description\" content=\"In this article you have learned How to Customize WordPress RSS Feeds. Also, how you can add content and control your WordPress RSS feeds.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/\" \/>\n<meta property=\"og:site_name\" content=\"Hostkicker\" \/>\n<meta property=\"article:published_time\" content=\"2021-12-23T14:06:23+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-05-17T06:08:37+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-featured-image-row12-01.png\" \/>\n\t<meta property=\"og:image:width\" content=\"693\" \/>\n\t<meta property=\"og:image:height\" content=\"511\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Olivia Smith\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Olivia Smith\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/\"},\"author\":{\"name\":\"Olivia Smith\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/person\\\/f06306b595baa96c90a0491b941d7660\"},\"headline\":\"How to Customize WordPress RSS Feeds\",\"datePublished\":\"2021-12-23T14:06:23+00:00\",\"dateModified\":\"2022-05-17T06:08:37+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/\"},\"wordCount\":759,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/hostkicker-featured-image-row12-01.png\",\"articleSection\":[\"Wp tutorials\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/\",\"name\":\"How to Customize WordPress RSS Feeds\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/hostkicker-featured-image-row12-01.png\",\"datePublished\":\"2021-12-23T14:06:23+00:00\",\"dateModified\":\"2022-05-17T06:08:37+00:00\",\"description\":\"In this article you have learned How to Customize WordPress RSS Feeds. Also, how you can add content and control your WordPress RSS feeds.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/#primaryimage\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/hostkicker-featured-image-row12-01.png\",\"contentUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/hostkicker-featured-image-row12-01.png\",\"width\":693,\"height\":511,\"caption\":\"How to Customize WordPress RSS Feeds\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/how-to-customize-wordpress-rss-feeds\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to Customize WordPress RSS Feeds\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/\",\"name\":\"Hostkicker\",\"description\":\"Blog\",\"publisher\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#organization\",\"name\":\"Hostkicker\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/hostkicker-logo-01.png\",\"contentUrl\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/12\\\/hostkicker-logo-01.png\",\"width\":940,\"height\":218,\"caption\":\"Hostkicker\"},\"image\":{\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/#\\\/schema\\\/person\\\/f06306b595baa96c90a0491b941d7660\",\"name\":\"Olivia Smith\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g\",\"caption\":\"Olivia Smith\"},\"url\":\"https:\\\/\\\/hostkicker.com\\\/blog\\\/author\\\/olivia\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to Customize WordPress RSS Feeds","description":"In this article you have learned How to Customize WordPress RSS Feeds. Also, how you can add content and control your WordPress RSS feeds.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/","og_locale":"en_US","og_type":"article","og_title":"How to Customize WordPress RSS Feeds","og_description":"In this article you have learned How to Customize WordPress RSS Feeds. Also, how you can add content and control your WordPress RSS feeds.","og_url":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/","og_site_name":"Hostkicker","article_published_time":"2021-12-23T14:06:23+00:00","article_modified_time":"2022-05-17T06:08:37+00:00","og_image":[{"width":693,"height":511,"url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-featured-image-row12-01.png","type":"image\/png"}],"author":"Olivia Smith","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Olivia Smith","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/#article","isPartOf":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/"},"author":{"name":"Olivia Smith","@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/person\/f06306b595baa96c90a0491b941d7660"},"headline":"How to Customize WordPress RSS Feeds","datePublished":"2021-12-23T14:06:23+00:00","dateModified":"2022-05-17T06:08:37+00:00","mainEntityOfPage":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/"},"wordCount":759,"commentCount":0,"publisher":{"@id":"https:\/\/hostkicker.com\/blog\/#organization"},"image":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/#primaryimage"},"thumbnailUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-featured-image-row12-01.png","articleSection":["Wp tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/","url":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/","name":"How to Customize WordPress RSS Feeds","isPartOf":{"@id":"https:\/\/hostkicker.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/#primaryimage"},"image":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/#primaryimage"},"thumbnailUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-featured-image-row12-01.png","datePublished":"2021-12-23T14:06:23+00:00","dateModified":"2022-05-17T06:08:37+00:00","description":"In this article you have learned How to Customize WordPress RSS Feeds. Also, how you can add content and control your WordPress RSS feeds.","breadcrumb":{"@id":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/#primaryimage","url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-featured-image-row12-01.png","contentUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-featured-image-row12-01.png","width":693,"height":511,"caption":"How to Customize WordPress RSS Feeds"},{"@type":"BreadcrumbList","@id":"https:\/\/hostkicker.com\/blog\/how-to-customize-wordpress-rss-feeds\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hostkicker.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Customize WordPress RSS Feeds"}]},{"@type":"WebSite","@id":"https:\/\/hostkicker.com\/blog\/#website","url":"https:\/\/hostkicker.com\/blog\/","name":"Hostkicker","description":"Blog","publisher":{"@id":"https:\/\/hostkicker.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hostkicker.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/hostkicker.com\/blog\/#organization","name":"Hostkicker","url":"https:\/\/hostkicker.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-logo-01.png","contentUrl":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-logo-01.png","width":940,"height":218,"caption":"Hostkicker"},"image":{"@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/hostkicker.com\/blog\/#\/schema\/person\/f06306b595baa96c90a0491b941d7660","name":"Olivia Smith","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/24a6b2466362238ad275f97a2f2fc49ce8d139c034114d6b9c52de1b12ebf1bd?s=96&d=mm&r=g","caption":"Olivia Smith"},"url":"https:\/\/hostkicker.com\/blog\/author\/olivia\/"}]}},"jetpack_featured_media_url":"https:\/\/hostkicker.com\/blog\/wp-content\/uploads\/2021\/12\/hostkicker-featured-image-row12-01.png","_links":{"self":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts\/336","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/users\/4"}],"replies":[{"embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/comments?post=336"}],"version-history":[{"count":8,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts\/336\/revisions"}],"predecessor-version":[{"id":566,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/posts\/336\/revisions\/566"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/media\/346"}],"wp:attachment":[{"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/media?parent=336"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/categories?post=336"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/hostkicker.com\/blog\/wp-json\/wp\/v2\/tags?post=336"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}