- 4K WebM video encoded with VP9
2a. 1080p MP4 video encoded with HEVC/H.265
2b. Optional: 1080p MP4 encoded with MPEG-4/H.264 (if Windows Mobile and IE8-11 support is required)
| //* REMOVE DASHBOARD WELCOME | |
| remove_action('welcome_panel', 'wp_welcome_panel'); | |
| // */ | |
| //* REMOVE ADMIN DASHBOARD WIDGETS | |
| // Create the function to use in the action hook | |
| function remove_default_dashboard_widgets() { | |
| <?php | |
| namespace Rarst; | |
| /** | |
| * Discover where is array global being modified, because WordPress. | |
| */ | |
| class Global_Sniffer implements \ArrayAccess { | |
| protected $name; |
| <?php | |
| /* | |
| Plugin Name: Plugin Debugging Tool | |
| Description: Proof of concept of a WordPress mu-plugin to automatically disable plugins that start throwing errors. Must be installed as mu-plugin. The first time a plugin errors, it will white screen or show an error. Next page load, it is disabled. There has not been any functionality to remove plugins from the black list. If you'd like to see it developed more, please email chase@crumbls.com Only tested on Apache running PHP7. | |
| Author: Chase C. Miller | |
| Author Email: chase@crumbls.com | |
| Version: 1.0 | |
| Author URI: http://crumbls.com | |
| */ |
This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This is accurate as of WordPress 4.8, and includes some upcoming changes in WordPress 4.9.
There are a few TODOs left. Please bear with me.
| INITIALISATION | |
| ============== | |
| load wp-config.php | |
| set up default constants | |
| load wp-content/advanced-cache.php if it exists | |
| load wp-content/db.php if it exists | |
| connect to mysql, select db | |
| load object cache (object-cache.php if it exists, or wp-include/cache.php if not) | |
| load wp-content/sunrise.php if it exists (multisite only) |
| <? | |
| ///////////////////// | |
| // slack2html | |
| // by @levelsio | |
| ///////////////////// | |
| // | |
| ///////////////////// | |
| // WHAT DOES THIS DO? | |
| ///////////////////// | |
| // |
| // Use Gists to store code you would like to remember later on | |
| console.log(window); // log the "window" object to the console |
| <?php | |
| /** | |
| * Plugin Name: Disable ACF on Frontend | |
| * Description: Disable ACF functions on the front-end of WordPress in order to provide a performance boost. | |
| * Version: 2.0 | |
| * Author: Lee Peterson | |
| * Author URI: http://www.leepeterson.me | |
| * License: MIT | |
| * License URI: http://www.opensource.org/licenses/mit-license.php | |
| */ |
| # ----------------------------------------------------------------- | |
| # .gitignore for WordPress | |
| # Bare Minimum Git | |
| # http://ironco.de/bare-minimum-git/ | |
| # ver 20150227 | |
| # | |
| # This file is tailored for a WordPress project | |
| # using the default directory structure | |
| # | |
| # This file specifies intentionally untracked files to ignore |