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-includes/taxonomy.php
    , line 3416
引入
2.5.0
弃用

Enables or disables term counting.

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;
}