wpseek.com
A WordPress-centric search engine for devs and theme authors



get_alloptions › WordPress Function

Since1.0.0
Deprecated3.0.0
get_alloptions ( No parameters )
See:
Returns:
  • (array) List of all options.
Defined at:
Codex:

Retrieve all autoload options, or all options if no autoloaded ones exist.



Source

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