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;
}