wpseek.com
A WordPress-centric search engine for devs and theme authors



get_autotoggle › WordPress Function

Since0.71
Deprecated2.1.0
get_autotoggle ( $id = 0 )
Parameters:
  • (int) $id The category to get. If no category supplied uses 0
    Required: No
    Default:
Returns:
  • (int) Only returns 0.
Defined at:
Codex:

Gets the auto_toggle setting.



Source

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