mu_options

The timeline below displays how wordpress function mu_options has changed across different WordPress versions. If a version is not listed, refer to the next available version below.

WordPress Version: 4.6

/**
 * WPMU options.
 *
 * @deprecated 3.0.0
 */
function mu_options($options)
{
    _deprecated_function(__FUNCTION__, '3.0.0');
    return $options;
}

WordPress Version: 4.4

/**
 * WPMU options.
 *
 * @deprecated 3.0.0
 */
function mu_options($options)
{
    _deprecated_function(__FUNCTION__, '3.0');
    return $options;
}

WordPress Version: 3.7

/**
 * @deprecated 3.0.0
 */
function mu_options($options)
{
    _deprecated_function(__FUNCTION__, '3.0');
    return $options;
}