wpmu_menu

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

WordPress Version: 4.6

/**
 * Multisite: Deprecated admin functions from past versions and WordPress MU
 *
 * These functions should not be used and will be removed in a later version.
 * It is suggested to use for the alternatives instead when available.
 *
 * @package WordPress
 * @subpackage Deprecated
 * @since 3.0.0
 */
/**
 * Outputs the WPMU menu.
 *
 * @deprecated 3.0.0
 */
function wpmu_menu()
{
    _deprecated_function(__FUNCTION__, '3.0.0');
    // Deprecated. See #11763.
}

WordPress Version: 4.4

/**
 * Multisite: Deprecated admin functions from past versions and WordPress MU
 *
 * These functions should not be used and will be removed in a later version.
 * It is suggested to use for the alternatives instead when available.
 *
 * @package WordPress
 * @subpackage Deprecated
 * @since 3.0.0
 */
/**
 * Outputs the WPMU menu.
 *
 * @deprecated 3.0.0
 */
function wpmu_menu()
{
    _deprecated_function(__FUNCTION__, '3.0');
    // Deprecated. See #11763.
}

WordPress Version: 4.0

/**
 * Deprecated multisite admin functions from past WordPress versions and WordPress MU.
 * You shouldn't use these functions and look for the alternatives instead. The functions
 * will be removed in a later version.
 *
 * @package WordPress
 * @subpackage Deprecated
 * @since 3.0.0
 */
/**
 * @deprecated 3.0.0
 */
function wpmu_menu()
{
    _deprecated_function(__FUNCTION__, '3.0');
    // Deprecated. See #11763.
}

WordPress Version: 3.7

/**
 * Deprecated multisite admin functions from past WordPress versions and WordPress MU.
 * You shouldn't use these functions and look for the alternatives instead. The functions
 * will be removed in a later version.
 *
 * @package WordPress
 * @subpackage Deprecated
 * @since 3.0.0
 */
/**
 * @deprecated 3.0.0
 */
function wpmu_menu()
{
    _deprecated_function(__FUNCTION__, '3.0');
    // deprecated. See #11763
}