| 123456789101112131415161718192021222324252627282930 |
- <?php
- /**
- * Loader stub for the studiou-wc-mail-queue mu-plugin.
- *
- * WordPress globs only `wp-content/mu-plugins/*.php` — top level, no recursion.
- * A plugin that lives in a subdirectory is therefore never loaded on its own.
- *
- * INSTALL
- * 1. Copy the whole `studiou-wc-mail-queue/` directory to
- * `wp-content/mu-plugins/studiou-wc-mail-queue/`
- * 2. Copy THIS file to `wp-content/mu-plugins/studiou-wc-mail-queue.php`
- * (top level, alongside the directory — not inside it).
- *
- * Without step 2 the plugin is completely inert and reports nothing.
- *
- * @package studiou-wc-mail-queue
- * @copyright 2026 QUADARAX
- * @author Dalibor Votruba <dvotruba@quadarax.com>
- * @license GPL-2.0-or-later
- */
- defined( 'ABSPATH' ) || exit;
- $studiou_wcmq_main = __DIR__ . '/studiou-wc-mail-queue/studiou-wc-mail-queue.php';
- if ( file_exists( $studiou_wcmq_main ) ) {
- require_once $studiou_wcmq_main;
- }
- unset( $studiou_wcmq_main );
|