This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This documentation has moved here: https://github.com/johnbillion/wp_mail
This document lists all the situations where WordPress sends an email, along with how to filter or disable each email.
This documentation has moved here: https://github.com/johnbillion/wp_mail
| $ease-in-sine: cubic-bezier( 0.47, 0, 0.745, 0.715 ); | |
| $ease-out-sine: cubic-bezier( 0.39, 0.575, 0.565, 1 ); | |
| $ease-in-out-sine: cubic-bezier( 0.445, 0.05, 0.55, 0.95 ); | |
| $ease-in-quad: cubic-bezier( 0.55, 0.085, 0.68, 0.53 ); | |
| $ease-out-quad: cubic-bezier( 0.25, 0.46, 0.45, 0.94 ); | |
| $ease-in-out-quad: cubic-bezier( 0.455, 0.03, 0.515, 0.955 ); | |
| $ease-in-cubic: cubic-bezier( 0.55, 0.055, 0.675, 0.19 ); | |
| $ease-out-cubic: cubic-bezier( 0.215, 0.61, 0.355, 1 ); |
| #/usr/bin/env bash | |
| # MIT © Sindre Sorhus - sindresorhus.com | |
| # forked by Gianluca Guarini | |
| changed_files="$(git diff-tree -r --name-only --no-commit-id ORIG_HEAD HEAD)" | |
| check_run() { | |
| echo "$changed_files" | grep -E --quiet "$1" && eval "$2" | |
| } |
| <?php | |
| /** | |
| * Plugin Name: Old Upload Method | |
| * Plugin URI: http://wordpress.org/support/topic/is-there-a-way-to-disable-the-new-media-manager | |
| * Description: Replace the new media upload with the old thickbox | |
| * Author: A.Morita, brasofilo | |
| * Version: 1.2 | |
| * License: GPLv2 or later | |
| * |
| <?php | |
| /* | |
| Usage: | |
| $frag = new CWS_Fragment_Cache( 'unique-key', 3600 ); // Second param is TTL | |
| if ( !$frag->output() ) { // NOTE, testing for a return of false | |
| functions_that_do_stuff_live(); | |
| these_should_echo(); | |
| // IMPORTANT | |
| $frag->store(); | |
| // YOU CANNOT FORGET THIS. If you do, the site will break. |