get_alloptions()WP 1.0.0

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

Changelog

Since 1.0.0 Introduced.
Deprecated since 3.0.0 Use wp_load_alloptions())

get_alloptions() code WP 6.4.3

function get_alloptions() {
	_deprecated_function( __FUNCTION__, '3.0.0', 'wp_load_alloptions()' );
	return wp_load_alloptions();
}