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

Top ↑

See also


Top ↑

Return

(array) List of all options.


Top ↑

Source

File: wp-includes/deprecated.php

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


Top ↑

Changelog

Changelog
VersionDescription
3.0.0Use wp_load_alloptions())
1.0.0Introduced.

The content displayed on this page has been created in part by processing WordPress source code files which are made available under the GPLv2 (or a later version) license by theĀ Free Software Foundation. In addition to this, the content includes user-written examples and information. All material is subject to review and curation by the WPPaste.com community.

Show More