The new url
https://www.domain.com/feed?code=randompassword
Add to the bottom of the file:
/wp-includes/functions.php
1 2 3 4 5 6 7 8 9 10 11 |
function digwp_disable_feed() { if ($_GET['code']<>'randompassword') { wp_die(__()); } } add_action('do_feed', 'digwp_disable_feed', 1); add_action('do_feed_rdf', 'digwp_disable_feed', 1); add_action('do_feed_rss', 'digwp_disable_feed', 1); add_action('do_feed_rss2', 'digwp_disable_feed', 1); add_action('do_feed_atom', 'digwp_disable_feed', 1); |
To hide the rss icon edit the file:
/wp-content/themes/jarida/style.css
Add to the top of the file:
1 2 3 |
.tieicon-rss { display: none; } |