you can add some code to the bottom of each feed post, this would give you the desired result. You can add this code to your functions.php or add it as a plugin
/** Add custom feed content footer
* @param $content
* @return string
*/
function add_feed_content($content) {
if(is_feed()) {
$post_type = get_post_type( get_the_ID() );
$content .= '<footer>'.PHP_EOL;
$content .= '<p>Some advert here</p>'.PHP_EOL;
$content .= '</footer>'.PHP_EOL;
}
return $content;
}
add_filter('the_excerpt_rss', 'add_feed_content');
add_filter('the_content', 'add_feed_content');
edit: making the assumption you control the RSS feed, but thinking about your question more, maybe you don’t
Related Posts:
- Editor not displaying dynamically after clicking on the button
- Blog titles from WP blog on plain html site?
- How to include this jQuery File in wordpress?
- how to convert XML from URL to HTML
- Overriding inline !important CSS with Javscript code snippet with media query
- Scroll to ID broken in main menu
- Possible jquery / library conflict in plugin usage
- Element works, but not on wordpress site [duplicate]
- dealing with large HTML output via plugin code
- How can I make my custom shortcode work in a Custom HTML Widget?
- Output in XHTML or HTML 5 for plugins?
- PHP Deprecated: Non-static method should not be called statically
- Using tabs for wordpress plugin
- How to fetch serialized data from wordpress options
- How to load plugin before the wordpress jquery?
- How to edit plugin’s html? [closed]
- Why is my ajax call refreshing the page?
- Disable wordpress from including jQuery in the head section
- Admin-ajax.php is dying “0” without processing function
- How to add an attribute to the body tag with a plugin?
- Plugin jQuery version VS Theme jQuery version: search for best practice
- Adding a jquery script to plugin contact form 7
- jQuery function didn’t work in my plugin
- JQuery not working in my plugin [closed]
- Error shown for Trying to get property ‘roles’ of non-object in WordPress After Content for User Roles
- Hook into and send mail using WP Mail SMTP type plugin from HTML static front page?
- Inserting HTML tag with ACF into shortcode
- Notepad sticky plugin
- Loading jQuery UI in the head
- Form isn’t inserting data into database with ajax plugin
- custom changes removed after plugin update
- Error with Image Slide plug-in/ s3slider in WP
- Need to change url paramenter of share product pintrest [closed]
- How to tie dark mode with prefers-color-scheme webkit? [closed]
- jQuery for custom plugin not working with Divi theme
- How can i get the post’s full html source by its ID?
- Redux Framework: Page freezes on typing in Editor
- How can I inject options into an select tag inside the widget form?
- Create shortcode to echo javascript
- how to insert data in wordpress table usnig jquery ajax
- Jquery NoConflict Problem
- this jQuery function works perfect in static html page but not on wordpress
- AJAX fileupload – TypeError: not a function ajaxSubmit()
- How does one include the JQuery UI plugin to wordpress and enque it correctly in a plugin form?
- How can I exclude a dynamic URL to show a popup created using ‘WordPress Popup’ plugin
- Is there a function to list all uploaded images? How can I add one?
- How to remove js ui library added by default by wordpress
- Any idea how to get something like this to work? [closed]
- Creating a widget and missing jQuery
- Stop wordpress from requesting external jquery from googleapi
- Api external with wordpress
- Best way to duplicate specific page content across two sites?
- JQuery needs to be defined in , but Gravity Forms is defining it in the
- How do I make sure that my plugin only runs on article detail pages?
- File Uploader – Upload without adding to Media Library
- Why do I get jQuery reference error / undefined when changing name of plugin file?
- How to prevent tabs from opening all at once
- Featured Image in RSS Feed
- Separate jQuery for Individual Comments?
- force jQuery to load in the head
- Some images on WordPress site are suddenly gone
- Replace image urls(absolute instead of relative) by using filter in single page
- jQuery slider widget similar to cnet.com
- Problems with jQuery and is_admin()
- Theme deactived html and css styling on home page posts
- Code for unique user visit count on every page WordPress
- How do I reinit WordPress plugins dynamically using jS?
- Get the link title attribute and send it google analytics as custom label via google tag manager using beehive pro for WordPress
- Mixed content error after adding SSL certificate
- main navigation menu disappear after adding jquery source file
- Remove metatag from a particular page
- Hide button after form submit and save state to localstorage
- How to change the width of certain paragraph or header blocks?
- Get and Update Most Meta Value as an array in HTML form
- myStickymenu hide on scroll up to certain Y values
- How to solve Blocked a frame with origin from accessing a cross origin frame error in wordpress?
- jquery plugin won’t fire when hamburger class element clicked
- Storing Array of values into wordpress options
- jQuery to show icon after .hide
- How to add styling and script to a custom widget plugin
- hide load more button if there are no posts left to display
- Adding link on title its in description but not in title see screenshots attached
- Not getting result using ajax on wordpress
- AJAX doesn’t pass variables to the php function in the plugin
- RSS Feed has no Items (Possible Plugins Conflict)
- What is the RSS feed link for the newest WordPress plugins?
- how to call jQuery in admin as well as in homepage
- “The Events Calendar” Issues in WP 3.2
- Pulling RSS from site and display it in posts
- rss feed code help
- How do I output user_registered time in my correct timezone?
- Ajax in Plugins: returns the whole page
- Shortcode return is printing a 1 afterward
- Trying to disable all notifications except for one on woocommerce checkout page with css [closed]
- wordpress illegal string offset ‘parameter’ error
- Ajax button “Load more” is not loading correct language version posts for logged out users
- WordPress GiveWP Plugin showing blank page in none default theme [closed]
- A way to upload old html pages with all its assets via WordPress admin and to add a fixed menu on top of those (a la Wayback Machine)
- Limit entry to a WordPress page
- How to create different woocommerce single_product.php pages for each product? [closed]