On this page
get_alloptions(): array
This function has been deprecated. Use wp_load_alloptions() instead.
Retrieve all autoload options, or all options if no autoloaded ones exist.
Description
See also
Return
array List of all options.
Source
File: wp-includes/deprecated.php. View all references
function get_alloptions() {
_deprecated_function( __FUNCTION__, '3.0.0', 'wp_load_alloptions()' );
return wp_load_alloptions();
}
Related
Uses
| Uses | Description |
|---|---|
| wp_load_alloptions() wp-includes/option.php | Loads and caches all autoloaded options, if available or all options. |
| _deprecated_function() wp-includes/functions.php | Marks a function as deprecated and inform when it has been used. |
Changelog
| Version | Description |
|---|---|
| 3.0.0 | Use wp_load_alloptions() ) |
| 1.0.0 | Introduced. |
© 2003–2022 WordPress Foundation
Licensed under the GNU GPLv2+ License.
https://developer.wordpress.org/reference/functions/get_alloptions