Hello doran,
Our theme does not manage the rss feed, it is managed by wordpress, but it can be modified in the functions.php.
Unfortunately we cannot offer custom work, but we can point you in the right direction as you can find a solution for your problems here:
http://wordpress.stackexchange.com/questions/126174/disable-comments-feed-but-not-the-others
or another solution like so: http://timneill.net/2013/05/remove-extra-rss-feeds-in-wordpress/
Try them out and see how it goes.
Thank you for your message.
Hi –
you might be able to hide/disable them partially using the custom code from my sticky post for site optimization, specifically the first bits related to feeds, which would be added to the bottom of the theme functions.php file in a text editor (NOT WORD PROCESSOR)
remove_action( 'wp_head', 'wp_generator' ) ;
remove_action( 'wp_head', 'wlwmanifest_link' ) ;
remove_action( 'wp_head', 'rsd_link' ) ;
remove_action( 'wp_head', 'feed_links', 2 );
remove_action( 'wp_head', 'feed_links_extra', 3 );
REF:
https://forum.tagdiv.com/topic/tutorial-chriss-custom-optimizations-for-functions-php-etc/
also for the more technical crap related to this topic
https://core.trac.wordpress.org/ticket/23692
-
This reply was modified 10 years by
simchris.
Thank you Chris,
I used your custom code but it removed all feeds.
Then, I added this code manually in header.php
<link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
It looks nice.
-
This reply was modified 10 years by
doran.
