admin管理员组

文章数量:1328378

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)

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)

Share Improve this question asked Jul 16, 2020 at 14:49 Álvaro FranzÁlvaro Franz 1,1001 gold badge9 silver badges31 bronze badges 2
  • It is a global instance of WP environment setup class and listed among the other global variables under the link you provided. – Ivan Shatsky Commented Jul 16, 2020 at 14:57
  • 1 Use of the main $wp object in plugins and themes is extremely rare, and is usually a bad sign of code quality. In the example you linked to, it isn't even used, the line could be deleted and it would make no difference – Tom J Nowell Commented Jul 16, 2020 at 15:17
Add a comment  | 

1 Answer 1

Reset to default 3

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.

本文标签: What is the global wp object used for