I want to hide my plugin list. Suppose anyone can see which plugin I use from this site. How can I hide my plugin list from here? I use WordPress new version, and I want to always update my plugin but don’t want anyone can see my plugin name. How can I do that?

function cws_hidden_plugin_12345( $r, $url ) {
    if ( 0 !== strpos( $url, 'http://api.wordpress.org/plugins/update-check' ) )
}

2 Answers
2

WordPress needs themes and plugins to be in web-accessible folder, so that any scripts and styles from them can be downloaded by browsers and work.

From there it’s technologically easy to detect such resources in page source and/or proactively scan site for presence of files belonging to popular plugins.

There is nothing to be done about that, short of massive layer of moving and anonymizing any files that need to be loaded. I am not aware of any solutions the purposely do this. Plugins that concatenate scripts and styles can have partial side effect like this.

Tags:

Leave a Reply

Your email address will not be published. Required fields are marked *