What is the global $wp object used for?

In the wordpress documentation for Global Variables, I did not find information about the $wp global variable.

I found a plugin which declares the global $wp variable as follows:

public function login_form(){
   global $wp;
   ...
}

But this variable is never used inside the declared function, so I wonder what is going on.

The entire function can be found here (links to the exact line in the GitHub WordPress Frontend Profile plugin)

1 Answer
1

It contains the main instance of the WP class, which is primarily responsible for parsing the request URL and querying the appropriate posts, as well as sending headers and handling 404s. It can be used for things like getting the current request URL.

If it’s declared in a function but not used, it’s likely a mistake, or left over from a previous version of the function that did use it. You would need to ask the plugin developer why.

Leave a Comment