get_alloptions()
Deprecated from version 3.0.0. It is no longer supported and can be removed in future releases. Use wp_load_alloptions()) instead.
Retrieve all autoload options, or all options if no autoloaded ones exist.
No Hooks.
Return
Array
. List of all options.
Usage
get_alloptions();
Notes
- See: wp_load_alloptions()
Changelog
Since 1.0.0 | Introduced. |
Deprecated since 3.0.0 | Use wp_load_alloptions()) |
get_alloptions() get alloptions code WP 6.7.1
function get_alloptions() { _deprecated_function( __FUNCTION__, '3.0.0', 'wp_load_alloptions()' ); return wp_load_alloptions(); }