-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccount-switcher.php
More file actions
30 lines (25 loc) · 1005 Bytes
/
account-switcher.php
File metadata and controls
30 lines (25 loc) · 1005 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<?php
declare(strict_types=1);
defined('ABSPATH') || exit;
// @phpcs:disable PSR1.Files.SideEffects
// @phpcs:disable PSR12.Files.FileHeader
// @phpcs:disable Generic.Files.LineLength
/**
* Plugin Name: Account Switcher
* Version: 1.0.2
* Plugin URI: https://beycanpress.com/our-plugins/
* Description: Thanks to this plugin, more than one account can be registered on a wordpress site and the user can switch between accounts at any time.
* Author URI: https://beycanpress.com
* Author: BeycanPress LLC
* Tags: Multiple Accounts, Switching between accounts, Multiple Accounts for WordPress, Account switcher for WordPress
* Text Domain: account-switcher
* License: GPLv3
* License URI: https://www.gnu.org/licenses/gpl-3.0.tr.html
* Text Domain: account-switcher
* Domain Path: /languages
* Requires at least: 5.0
* Tested up to: 6.8
* Requires PHP: 8.1
*/
require __DIR__ . '/vendor/autoload.php';
new \BeycanPress\AccountSwitcher\Loader(__FILE__);