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