HOUR_IN_SECONDS
The WordPress Core HOUR IN SECONDS constant.
Value (unknown)
60 * MINUTE_IN_SECONDS
Usage
if ( defined( 'HOUR_IN_SECONDS' ) ) { // grab the value $value = constant( 'HOUR_IN_SECONDS' ); if ( !empty( $value ) ) { // go forth and prosper... } }
Defined (1)
The constant is defined in the following location(s).
- /wp-includes/default-constants.php
- define( 'HOUR_IN_SECONDS', 60 * MINUTE_IN_SECONDS );