wpsc_debug_username()WPSCache 1.0

Хуков нет.

Возвращает

null. Ничего.

Использование

wpsc_debug_username();

Код wpsc_debug_username() WPSCache 1.9.4

function wpsc_debug_username() {
	global $wp_cache_debug_username;
	if ( ! isset( $wp_cache_debug_username ) || $wp_cache_debug_username == '' ) {
		$wp_cache_debug_username = md5( time() + mt_rand() );
		wp_cache_setting( 'wp_cache_debug_username', $wp_cache_debug_username );
	}
	return $wp_cache_debug_username;
}