I hereby claim:
- I am ironprogrammer on github.
- I am ironprogrammer (https://keybase.io/ironprogrammer) on keybase.
- I have a public key ASBkabFHTiblx8yQIc2ualSeQ_5nqPARBEsD_xs0COLDeQo
To claim this, I am signing this object:
| <?php | |
| /** | |
| * Plugin Name: Set featured image | |
| * Plugin URI: http://wpengineer.com/2460/set-wordpress-featured-image-automatically/ | |
| * Description: Set featureed image automaticly on save post/page | |
| * Version: 1.0.1 | |
| * Author: Frank Bültge | |
| * Author URI: http://bueltge.de | |
| * License: GPLv3 | |
| */ |
| <!-- 1. Take your Campaign Monitor subscribe form as generated from within your account: --> | |
| <form action="http://myaccount.createsend.com/t/r/s/aljhk/" method="post" id="subForm"> | |
| <div> | |
| <label for="name">Name:</label><br /><input type="text" name="cm-name" id="name" /><br /> | |
| <label for="aljhk-aljhk">Email:</label><br /><input type="text" name="cm-aljhk-aljhk" id="aljhk-aljhk" /><br /> | |
| <input type="submit" value="Subscribe" /> | |
| </div> | |
| </form> |
| function oenology_add_menu_parent_class( $items ) { | |
| $parents = array(); | |
| foreach ( $items as $item ) { | |
| if ( $item->menu_item_parent && $item->menu_item_parent > 0 ) { | |
| $parents[] = $item->menu_item_parent; | |
| } | |
| } | |
| foreach ( $items as $item ) { |
| /* allow scroll */ | |
| body>div.ember-view>div.ember-view { | |
| overflow: visible !important; | |
| } | |
| /* hide links */ | |
| .ember-view a[href]:after { | |
| content: '' !important; | |
| } | |
| .t__em-link { |
I hereby claim:
To claim this, I am signing this object:
Hint: Preceding the following
wpcalls with thetimecommand will provide execution timing to help with before and after patch comparisons. E.g.time wp plugin update --all.
# install the Rollback Update Failure plugin (plugin to test)
wp plugin install rollback-update-failure --activate
# [OPTIONAL] install the Rollback Update Testing plugin (to simulate failures)See comments below for images.
| # `wordpress-develop` contributor command line scripts for macOS | |
| # Requires WP-CLI: https://wp-cli.org | |
| # use local project's PHPunit | |
| alias phpunit='vendor/bin/phpunit' | |
| # PHPunit aliases, e.g. `puf name_of_test` | |
| alias pu=phpunit | |
| alias puf='phpunit --testdox --filter' | |
| alias pug='phpunit --testdox --group' | |
| alias pul='phpunit --list-groups' |
| # Spin up a SQLite WP site, e.g.: `wp-sqlite wp-603 6.0.3` | |
| # If omitted, version defaults to latest, and pins rollback to that version | |
| # @TODO consider using https://developer.wordpress.org/cli/commands/cli/alias/ for locals? | |
| wp-sqlite() { | |
| local wp_name='' | |
| local wp_ver='latest' | |
| # check required arg for site name | |
| if [ -z "$1" ]; then | |
| echo Usage: wp-sqlite site-name \[wp-version\] |
(Note that some commands refer to shell functions from wordpress.zsh and wordpress-sqlite.zsh.)
## Testing Instructions for Trac 54504
# PREPARE PR SOURCE
# get pr
gh pr checkout 3732