I hereby claim:
- I am rmccue on github.
- I am rmccue (https://keybase.io/rmccue) on keybase.
- I have a public key ASB1nf87pm0h0dkgm8ejxGL8KyOkkwbcA-7udP-D7I8qHwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| // Resolve custom components by calling .render() recursively. | |
| const resolveComponents = element => { | |
| // If the "component" is a string, it's static text. | |
| if ( typeof element === 'string' ) { | |
| return element; | |
| } | |
| // If the type is a string, it's already in DOM node form. | |
| if ( typeof element.type === 'string' ) { | |
| return element; |
| <a href="blackbox://🔒">lock</a> | |
| <a href="blackbox://🔓">unlock</a> | |
| <a href="blackbox://🔐">key</a> |
| <?php | |
| /** | |
| * Plugin Name: WP REST API Strict Mode | |
| * Description: Triggers an error when unregistered parameters are used. | |
| * Author: Ryan McCue | |
| * Author URI: http://rmccue.io/ | |
| * Version: 0.1 | |
| * | |
| * Requires https://core.trac.wordpress.org/ticket/35507 | |
| */ |
| <?php | |
| /** | |
| * Grab latest post title by an author! | |
| * | |
| * @param array $data Options for the function. | |
| * @return string|null Post title for the latest, * or null if none. | |
| */ | |
| function my_awesome_func( $data ) { | |
| $posts = get_posts( array( |
Ever tried committing inside a git submodule, only to find that Vim doesn't syntax highlight your commit message? Worry no more!
Simply save the following file as ~/.vim/filetype.vim
| <?php | |
| namespace HM\Hotfix; | |
| add_action( 'deleted_option', __NAMESPACE__ . '\\workaround_28701' ); | |
| /** | |
| * Workaround cache deletion issue | |
| * | |
| * Ensures that the singular |
| <?php | |
| /** | |
| * Plugin Name: HM Autoloader | |
| * Description: Provides a standard autoloader utility for the site to use | |
| * Author: Human Made Limited | |
| * Author URI: http://hmn.md/ | |
| */ | |
| namespace HM; |
| <?php | |
| add_action( 'setup_theme', function () { | |
| global $wp; | |
| class RM_FakeWP extends WP { | |
| public $skip_query = false; | |
| function main($query_args = '') { | |
| $this->init(); |