• Resolved drrtulyg

    (@drrtulyg)


    I realize it’s normal to see Feeds but is there a way to hide this feed without disabling its functionality? Our client is concerned that it contains secure query data and would like it concealed from public view.

    It’s just the Aggregagtor feed @ ourdomain.com/wprss

    Thanks!

Viewing 1 replies (of 1 total)
  • Hi @drrtulyg,

    You can try to disable the Custom Feed URL using this following script:

    add_action( 'do_feed_wprss', 'my_disable_wprss_feed', 1 );
    
    function my_disable_wprss_feed() {
       wp_die( "You don't have access to this page." );
    }

    Please let us know if this works for you.

Viewing 1 replies (of 1 total)

The topic ‘/wprss Feed Visible’ is closed to new replies.