19 lines
443 B
PHP
19 lines
443 B
PHP
<?php
|
|
/**
|
|
* Plugin Name: HostForge Platform
|
|
* Plugin URI: https://hostforge.cloud
|
|
* Description: Required HostForge platform integrations and managed WordPress behaviors.
|
|
* Version: 1.0.0
|
|
* Author: HostForge
|
|
* Author URI: https://hostforge.cloud
|
|
*/
|
|
|
|
if (! defined('ABSPATH')) {
|
|
exit;
|
|
}
|
|
|
|
$hostforge_bootstrap = __DIR__ . '/hostforge-systems/bootstrap.php';
|
|
|
|
if (file_exists($hostforge_bootstrap)) {
|
|
require_once $hostforge_bootstrap;
|
|
} |