get_autotoggle()
Deprecated since 2.1.0. It is no longer supported and may be removed in future releases. It is recommended to replace this function with the same one.
Gets the auto_toggle setting.
No Hooks.
Returns
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() get autotoggle code WP 6.9.1
function get_autotoggle($id = 0) {
_deprecated_function( __FUNCTION__, '2.1.0' );
return 0;
}