wpseek.com
WordPress开发者和主题制作者的搜索引擎



get_autotoggle › WordPress Function

Since0.71
已弃用2.1.0
get_autotoggle ( $id = 0 )
参数:
  • (int) $id The category to get. If no category supplied uses 0
    Required: No
    默认:
返回:
  • (int) Only returns 0.
定义在:
文档:

Gets the auto_toggle setting.



源码

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