{"id":52,"date":"2024-02-29T05:56:47","date_gmt":"2024-02-29T05:56:47","guid":{"rendered":"https:\/\/www.kwwd.co.uk\/blog\/?p=52"},"modified":"2024-02-29T05:57:23","modified_gmt":"2024-02-29T05:57:23","slug":"add-custom-content-read-more-link-to-wordpress-rss-feed","status":"publish","type":"post","link":"https:\/\/www.kwwd.co.uk\/blog\/add-custom-content-read-more-link-to-wordpress-rss-feed\/","title":{"rendered":"Add Custom Content &#038; Read More Link To WordPress RSS Feed"},"content":{"rendered":"<p>In your functions.php file add in the following code<\/p>\n<pre><code class=\"language-php line-numbers\">\r\n\/\/ Customize the content of the custom RSS feed\r\nfunction custom_rss_item($content) {\r\n    global $post;\r\n\r\n    \/\/ Build the custom content for each post item\r\n    \/\/ Get the first 500 characters of the post content\r\n\t$custom_content .= '&lt;p&gt;' . esc_html(get_the_excerpt()) . '&lt;\/p&gt;';\r\n\t$custom_content .= '&lt;p&gt; &lt;\/p&gt;';\r\n    $custom_content .= '&lt;p&gt;' . esc_html(substr(strip_tags(get_the_content()), 0, 500)) . '...&lt;\/p&gt;';\r\n\t$custom_content .= '&lt;p&gt; &lt;\/p&gt;';\r\n\t$custom_content .= '&lt;p&gt;&lt;a href=\"' . esc_url(get_permalink()) . '\" target=\"_blank\"&gt;Read The Full Article Herek&lt;\/a&gt;&lt;\/p&gt;';\r\n\r\n    \/\/ Combine with existing content\r\n\t$content = $custom_content;\r\n\r\n    return $content;\r\n}\r\nadd_filter('the_excerpt_rss', 'custom_rss_item');\r\nadd_filter('the_content_feed', 'custom_rss_item');\r\n<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>In your functions.php file add in the following code \/\/ Customize the content of the custom RSS feed function custom_rss_item($content) { global $post; \/\/ Build [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[3],"tags":[9,12],"class_list":["post-52","post","type-post","status-publish","format-standard","hentry","category-wordpress","tag-php","tag-wordpress"],"_links":{"self":[{"href":"https:\/\/www.kwwd.co.uk\/blog\/wp-json\/wp\/v2\/posts\/52","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.kwwd.co.uk\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.kwwd.co.uk\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.kwwd.co.uk\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.kwwd.co.uk\/blog\/wp-json\/wp\/v2\/comments?post=52"}],"version-history":[{"count":0,"href":"https:\/\/www.kwwd.co.uk\/blog\/wp-json\/wp\/v2\/posts\/52\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.kwwd.co.uk\/blog\/wp-json\/wp\/v2\/media?parent=52"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.kwwd.co.uk\/blog\/wp-json\/wp\/v2\/categories?post=52"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.kwwd.co.uk\/blog\/wp-json\/wp\/v2\/tags?post=52"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}