wpsc_debug_username()
No Hooks.
Returns
null. Nothing (null).
Usage
wpsc_debug_username();
wpsc_debug_username() wpsc debug username code 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;
}