Files
wordpress/code/wp-content/mu-plugins/hostforge-systems.php

17 lines
371 B
PHP

<?php
/**
* Plugin Name: HostForge Systems
* Description: Required HostForge system integrations and platform-enforced WordPress behavior.
* Author: HostForge
* Version: 1.0.0
*/
if (! defined('ABSPATH')) {
exit;
}
$hostforge_bootstrap = __DIR__ . '/hostforge-systems/bootstrap.php';
if (file_exists($hostforge_bootstrap)) {
require_once $hostforge_bootstrap;
}