函数原型
get_autotoggle( int $id ): int
函数描述
Gets the auto_toggle setting.
是否弃用
Warning: This function has been deprecated.
函数参数
-
$id
int
Required - The category to get. If no category supplied uses 0
函数返回值
int Only returns 0.
函数位置
File: wp-includes/deprecated.php.
函数源码
function get_autotoggle($id = 0) {
_deprecated_function( __FUNCTION__, '2.1.0' );
return 0;
}
源码链接
变更日志
| Version | Description |
|---|---|
| 2.1.0 | This function has been deprecated. |
| 0.71 | Introduced. |

