Hey!
Thanks for your hints. I took a look at the first link. So the code should be like this:
Customize Feed in WordPress in functions.php
add_filter('the_excerpt_rss', 'dbt_custom_feed');
add_filter('the_content', 'dbt_custom_feed');
Hide all Shortcode also in functions.php:
function dbt_custom_feed( $content )
{
global $post;
if ( ! is_feed() )
return $content;
// Remove all shortcodes
$content = strip_shortcodes( $post->post_content );
return $content;
}
Does this code need to be on a specific line in the functions.php?
Thanks for your help.
Best,
Marcel
Hi Rikard
Take look at the following link and the pictures (private).
Thanks for your quick reply,
Best, Marcel
Hi Ismael
Thanks for your reply. Here is a screenshot of the button: http://prntscr.com/6x94e0. The button has the color of the Theme. The Blog is only on a local server available.
I want to change the read more link, which is created by the read more tag in a blog post. This preview of the Blog post is visible on the blog landing page.
Hope this helps.
Regards,
Marcel
Thanks worked fine.
Regards,
Marcel