get_autotoggle

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

WordPress Version: 4.6

/**
 * Gets the auto_toggle setting.
 *
 * @since 0.71
 * @deprecated 2.1.0
 *
 * @param int $id The category to get. If no category supplied uses 0
 * @return int Only returns 0.
 */
function get_autotoggle($id = 0)
{
    _deprecated_function(__FUNCTION__, '2.1.0');
    return 0;
}

WordPress Version: 4.4

/**
 * Gets the auto_toggle setting.
 *
 * @since 0.71
 * @deprecated 2.1.0
 *
 * @param int $id The category to get. If no category supplied uses 0
 * @return int Only returns 0.
 */
function get_autotoggle($id = 0)
{
    _deprecated_function(__FUNCTION__, '2.1');
    return 0;
}

WordPress Version: 3.9

/**
 * Gets the auto_toggle setting.
 *
 * @since 0.71
 * @deprecated 2.1.0
 * @deprecated No alternative function available
 *
 * @param int $id The category to get. If no category supplied uses 0
 * @return int Only returns 0.
 */
function get_autotoggle($id = 0)
{
    _deprecated_function(__FUNCTION__, '2.1');
    return 0;
}

WordPress Version: 3.7

/**
 * Gets the auto_toggle setting.
 *
 * @since 0.71
 * @deprecated 2.1
 * @deprecated No alternative function available
 *
 * @param int $id The category to get. If no category supplied uses 0
 * @return int Only returns 0.
 */
function get_autotoggle($id = 0)
{
    _deprecated_function(__FUNCTION__, '2.1');
    return 0;
}