is_wpmu_sitewide_plugin

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

WordPress Version: 4.6

/**
 * Deprecated functionality for determining if the current plugin is network-only.
 *
 * @deprecated 3.0.0 Use is_network_only_plugin()
 * @see is_network_only_plugin()
 */
function is_wpmu_sitewide_plugin($file)
{
    _deprecated_function(__FUNCTION__, '3.0.0', 'is_network_only_plugin()');
    return is_network_only_plugin($file);
}

WordPress Version: 4.4

/**
 * Deprecated functionality for determining if the current plugin is network-only.
 *
 * @deprecated 3.0.0 Use is_network_only_plugin()
 * @see is_network_only_plugin()
 */
function is_wpmu_sitewide_plugin($file)
{
    _deprecated_function(__FUNCTION__, '3.0', 'is_network_only_plugin()');
    return is_network_only_plugin($file);
}

WordPress Version: 3.7

/**
 * @deprecated 3.0.0
 * @see is_network_only_plugin()
 */
function is_wpmu_sitewide_plugin($file)
{
    _deprecated_function(__FUNCTION__, '3.0', 'is_network_only_plugin()');
    return is_network_only_plugin($file);
}