WP_List_Util::get_input() WordPress Method
The WP_List_Util::get_input() method is used to get an input from a user in the WordPress administration area. The method can be used to get input from a user either through the WordPress administration interface or through a script.
WP_List_Util::get_input() #
Returns the original input array.
Return
(array) The input array.
Source
File: wp-includes/class-wp-list-util.php
public function get_input() { return $this->input; }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
4.7.0 | Introduced. |