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
| wp core language list --field=language | xargs -n 1 wp core language install |
| #!/bin/bash | |
| REV=$1 | |
| svn up --ignore-externals . > /dev/null | |
| svn merge -c$REV ../../trunk . | |
| LOG=$(svn log -r$REV ../../trunk | grep -v '\-------' | tail -n +3) | |
| BRANCH=$(basename $(pwd)) | |
| echo -en "$LOG\n\nMerges [$REV] to the $BRANCH branch." | pbcopy | |
| echo "" | |
| pbpaste |
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
| <?php | |
| /* | |
| WordPress Theme Template Hierarchy Last updated for WordPress 5.4 | |
| ================================== | |
| This diagram is partially simplified for legibility. To view the complete template hierarchy in use on your site see the | |
| Template panel in the Query Monitor plugin. |
| 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) |
| @johnbillion: 14 | |
| @negatendo: 7 | |
| @karlfreeman: 5 | |
| @torrez: 5 | |
| @notch: 2 | |
| @boonych: 2 | |
| @mikesten: 1 | |
| @cityofprogress: 1 | |
| @darrenux: 1 | |
| @jansru: 1 |
| <?php | |
| /* Plugin Name: Damn Vulnerable WordPress Plugin | |
| * Description: Intentionally vulnerable plugin for plugin author education | |
| * Version: 0.1 | |
| * Plugin URI: http://make.wordpress.org/plugins/2013/04/09/intentionally-vulnerable-plugin/ | |
| * Author: Jon Cave | |
| * Author URI: http://joncave.co.uk | |
| * License: GPLv2+ | |
| * | |
| * DO NOT RUN THIS PLUGIN ON AN INTERNET ACCESSIBLE SITE |
| <?php | |
| /* | |
| Plugin Name: Post Meta Revisions | |
| Description: Revisions for the 'foo' post meta field | |
| Version: 1.0 | |
| Author: John Blackbourn | |
| Plugin URI: http://lud.icro.us/post-meta-revisions-wordpress | |
| */ |