20 lines
408 B
PHP
20 lines
408 B
PHP
<?php
|
|
/**
|
|
* WordPress runtime constants required during static analysis.
|
|
*
|
|
* @package RSS2CPT
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
define( 'ABSPATH', __DIR__ . '/wordpress/' );
|
|
}
|
|
if ( ! defined( 'WPINC' ) ) {
|
|
define( 'WPINC', 'wp-includes' );
|
|
}
|
|
if ( ! defined( 'MINUTE_IN_SECONDS' ) ) {
|
|
define( 'MINUTE_IN_SECONDS', 60 );
|
|
}
|
|
if ( ! defined( 'HOUR_IN_SECONDS' ) ) {
|
|
define( 'HOUR_IN_SECONDS', 3600 );
|
|
}
|