mirror of
https://gh.wpcy.net/https://github.com/szepeviktor/wordpress-website-lifecycle.git
synced 2026-04-24 05:09:10 +08:00
20 lines
347 B
PHP
20 lines
347 B
PHP
<?php
|
|
|
|
/*
|
|
* Plugin Name: Remove Polylang wizard
|
|
* Plugin URI: https://github.com/szepeviktor/wordpress-website-lifecycle
|
|
*/
|
|
|
|
add_action(
|
|
'plugins_loaded',
|
|
static function () {
|
|
class PLL_Wizard
|
|
{
|
|
public static function start_wizard($network_wide)
|
|
{
|
|
}
|
|
}
|
|
},
|
|
-1,
|
|
0
|
|
);
|