feature: Initial commit

This commit is contained in:
Keith Solomon
2026-08-24 08:46:51 -05:00
commit 158f978021
24 changed files with 2200 additions and 0 deletions
+19
View File
@@ -0,0 +1,19 @@
<?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 );
}