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 | |
| /* | |
| 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 | |
| */ | |
| <?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 |
| @johnbillion: 14 | |
| @negatendo: 7 | |
| @karlfreeman: 5 | |
| @torrez: 5 | |
| @notch: 2 | |
| @boonych: 2 | |
| @mikesten: 1 | |
| @cityofprogress: 1 | |
| @darrenux: 1 | |
| @jansru: 1 |
| 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) |
| <?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. | |
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
| #!/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 |
| wp core language list --field=language | xargs -n 1 wp core language install |
| # wp-cli: http://wp-cli.org/ | |
| # jq: https://stedolan.github.io/jq/ | |
| curl "https://api.wordpress.org/themes/info/1.1/?action=query_themes&request%5Bbrowse%5D=popular" \ | |
| | jq '.themes[] .slug' \ | |
| | xargs wp theme install |
| Version | Commit | Date | |
|---|---|---|---|
| 5.6 | 7aae3c7bbf02aed99012a4925ce610fc94c70272 | 2020-07-28 | |
| 5.5 | 55b3866749c642f5d5b2e6dfc57605ad31bdb820 | 2020-03-04 | |
| 5.4 | 4b1dd6e54988776227f72507c72cd81a4b337004 | 2019-10-25 | |
| 5.3 | 5640763da953c28033e9f285c7c2a1da4c613aa3 | 2019-05-02 | |
| 5.2 | 6edf51566187f1bba6aa5d891a681b02996ccef4 | 2019-02-14 | |
| 5.1 | ddc67854a4828a8aa36fc049940fc2ba4bf0604e | 2018-10-05 | |
| 5.0 | 9f77ec13ffcf1ab14c8699fdb68e728709eb6bb5 | 2017-11-07 | |
| 4.9 | 3c1dfef4ba5c8fe89b46c62f81395313c9814cf9 | 2017-06-01 | |
| 4.8 | 26a28e6450496efc07b6b5fbc3383d3d5f17634a | 2016-11-24 |