get_autotoggle()
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() get autotoggle code WP 6.7.1
function get_autotoggle($id = 0) { _deprecated_function( __FUNCTION__, '2.1.0' ); return 0; }