Skip to content

Instantly share code, notes, and snippets.

<?php
/*
* Plugin Name: Cron Example for https://core.trac.wordpress.org/ticket/42660
*/
class Cron_example_42660 {
function __construct() {
add_action( 'admin_menu', array( $this, 'admin_menu' ) );
add_action( 'cron_single_event', array( $this, 'cron_callback' ) );
}
@dd32
dd32 / live-coding-example.php
Created November 20, 2017 04:03
Gutenberg giphy live demo plugin
<?php
// mu-plugin for stepping through https://github.com/obenland/giphy-block/
// has some dynamic modifications to avoid JS errors / use a better gif
class LiveDemo {
static $steps = array(
'425c485' => '0: Boilerplate',
'c98c358' => '1: Register a block',