This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php // phpcs:ignore WordPress.Files.FileName.InvalidClassFileName | |
/** | |
* Plugin Name: RA Local Dev Plugin | |
* Description: Install as an mu-plugin to enable and disable other plugins during local development. | |
* Version: 0.1.0 | |
* License: GPL version 2 or any later version | |
* Author: Mark Jaquith, Andrey Savchenko, Paul Biron, Richard Aber | |
* | |
* Inspired by Paul Biron https://gist.github.com/pbiron/52bb63042cf220256ece89bc07fb57b0, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*://*try2explore.com/* | |
*://*16892.net/* | |
*://*1r1g.com/* | |
*://*55276.net/* | |
*://*5axxw.com/* | |
*://*711web.com/* | |
*://*900913.ru/* | |
*://*9ishenzhen.com/* | |
*://*a-scrip.org/* | |
*://*acnenomor.com/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
Plugin Name: Programmatically add Gravity Forms | |
Plugin URI: https://daan.kortenba.ch/programmatically-add-gravity-forms/ | |
Description: Programmatically add persistent Gravity Forms forms. | |
Author: Daan Kortenbach | |
Version: 0.1 | |
Author URI: https://daan.kortenba.ch/ | |
License: GPLv2 or later | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// These need to be enabled to save reusable blocks and templates | |
'core/block', | |
'core/template', | |
// Common blocks | |
'core/paragraph', | |
'core/image', | |
'core/heading', | |
'core/subhead', // DEPRECATED Subheading | |
'core/gallery', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Plugin Name: Extra user data | |
* Description: Show extra user fields in admin | |
* Version: 1.0 | |
* Author: Oskari Oksanen | |
* Author URI: http://oskarioksanen.fi/ | |
*/ | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'network_admin_menu', function () { | |
remove_submenu_page( 'sites.php', 'site-new.php' ); | |
}); |