wpsc_debug_username()WPSCache 1.0

Хуков нет.

Возвращает

null. Ничего (null).

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

wpsc_debug_username();

Код wpsc_debug_username() WPSCache 3.1.1

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