Warning: This function has been deprecated. Use wp_load_alloptions() instead.
get_alloptions() WordPress Function
The get_alloptions() function is used to retrieve all the options stored in the database for your site. This is useful for debugging or managing your site's settings.
get_alloptions() #
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
function get_alloptions() { _deprecated_function( __FUNCTION__, '3.0.0', 'wp_load_alloptions()' ); return wp_load_alloptions(); }
Expand full source codeCollapse full source codeView on TracView on GitHub
Changelog
Version | Description |
---|---|
3.0.0 | Use wp_load_alloptions()) |
1.0.0 | Introduced. |