This file contains hidden or 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: Disable All Updates and External Connections | |
* Description: Plugin which disables core, plugin and theme updates and connections to wordpress.org This is quite useful in local development | |
* Version: 1.0.0 | |
* Author: Onni Hakala | |
* Author URI: https://github.com/onnimonni | |
* License: MIT License | |
*/ |
This file contains hidden or 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
[class*="undefined"], | |
[class*="null"] { | |
border: red 5px solid !important; | |
background: #0f0 !important; | |
color: #00f !important; | |
} | |
[class*="undefined"]::after, | |
[class*="null"]::after { | |
content: "YOU HAVE AN ERROR IN YOUR CODE" !important; |
OlderNewer