返回介绍

wp_using_ext_object_cache()

发布于 2017-09-11 13:09:58 字数 1940 浏览 995 评论 0 收藏 0

wp_using_ext_object_cache( bool $using = null )

Toggle $_wp_using_ext_object_cache on and off without directly touching global.


description


参数

$using

(bool) (Optional) Whether external object cache is being used.

Default value: null


返回值

(bool) The current 'using' setting.


源代码

File: wp-includes/load.php

function wp_using_ext_object_cache( $using = null ) {
	global $_wp_using_ext_object_cache;
	$current_using = $_wp_using_ext_object_cache;
	if ( null !== $using )
		$_wp_using_ext_object_cache = $using;
	return $current_using;
}

更新日志

Versiondescription
3.7.0Introduced.

相关函数

Used By

  • wp-includes/class-wp-network.php: WP_Network::get_by_path()
  • wp-includes/class-wp-query.php: WP_Query::get_posts()
  • wp-includes/load.php: wp_start_object_cache()
  • wp-includes/option.php: set_site_transient()
  • wp-includes/option.php: delete_site_transient()
  • wp-includes/option.php: get_site_transient()
  • wp-includes/option.php: get_transient()
  • wp-includes/option.php: set_transient()
  • wp-includes/option.php: wp_load_core_site_options()
  • wp-includes/option.php: delete_transient()
  • wp-includes/nav-menu.php: wp_get_nav_menu_items()
  • Show 6 more used by Hide more used by

User Contributed Notes

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文