get_autotoggle()WP 0.71

Deprecated from version 2.1.0. It is no longer supported and can be removed in future releases. It is recommended to replace this function with the same one.

Gets the auto_toggle setting.

No Hooks.

Return

Int. Only returns 0.

Usage

get_autotoggle( $id );
$id(int)
The category to get. If no category supplied uses 0

Changelog

Since 0.71 Introduced.
Deprecated since 2.1.0

get_autotoggle() code WP 6.5.2

function get_autotoggle($id = 0) {
	_deprecated_function( __FUNCTION__, '2.1.0' );
	return 0;
}