wp_defer_term_counting

函数
wp_defer_term_counting ( $defer = null )
参数
  • (bool) $defer Optional. Enable if true, disable if false.
    Required:
    Default: null
返回值
  • (bool) Whether term counting is enabled or disabled.
定义位置
相关方法
wp_defer_comment_countingwp_update_term_countwp_update_term_count_now_pad_term_countswp_delete_comment
引入
2.5.0
弃用
-

wp_defer_term_counting:此函数的工作方式与wp_defer_comment_counting类似,但适用于分类术语。它将术语计数推迟到必要时,这有助于提高具有大量术语的WordPress站点的性能。

启用或禁用术语计数。

function wp_defer_term_counting( $defer = null ) {
	static $_defer = false;

	if ( is_bool( $defer ) ) {
		$_defer = $defer;
		// Flush any deferred counts.
		if ( ! $defer ) {
			wp_update_term_count( null, null, true );
		}
	}

	return $_defer;
}

常见问题

FAQs
查看更多 >