Skip to content

Instantly share code, notes, and snippets.

View johnregan3's full-sized avatar

John Regan johnregan3

View GitHub Profile
@johnregan3
johnregan3 / stream-user-generator.php
Last active August 29, 2015 14:00
Stream User Generator
<?php
/**
* Plugin Name: Stream User Generator
* Description: Generates X-Team users for testing
* Version: 0.1
* Author: johnregan3
* Author URI: http://johnregan3.me
*
* USE:
* Upload this into your Plugins directory.
@johnregan3
johnregan3 / hello-slj.php
Last active August 29, 2015 14:00
Hello Samuel L Jackson WordPress Plugin
<?php
/**
* Plugin Name: Hello Samuel L Jackson
* Description: Inserts random movie quotes by Samuel L. Jackson into your Admin header.
* Version: 1.0
* Author: John Regan
* Author URI: http://johnregan3.me
* License: GPLv2+
*/
### Keybase proof
I hereby claim:
* I am johnregan3 on github.
* I am johnxwp (https://keybase.io/johnxwp) on keybase.
* I have a public key whose fingerprint is 2D1B 7A65 8C07 4C6D C7F9 96B9 9204 900E DDA2 50A4
To claim this, I am signing this object:
@johnregan3
johnregan3 / mysql2date-unit-test.php
Created August 9, 2013 15:33
WordPress Unit Test for get_post_time(), get_post_modified_time() and mysql2date()
<?php
/**
* Tests if get_post_time() and get_post_modified_time() return GMT(UTC) times correctly.
*
* get_post_time() and get_post_modified_time() have a parameter for GMT(UTC) time.
* However, they use mysqldate(), which does not take such a parameter.
* mysql2date() expects the default timezone to be set to GMT(UTC), but when it is not,
* get_post_time() and get_post_modified_time() do not correctly return GMT(UTC) time.
* To prove this, test_get_post_time() and test_get_post_modified_time() should return two
@johnregan3
johnregan3 / save_post_post_type_test.php
Last active December 21, 2015 07:18
Unit Test for WordPress' save_post{$post_type}
<?php
/**
* This has been tested using the diff for save_post_{$post_type}
* https://core.trac.wordpress.org/changeset/25050
*
* @todo Try different post type names
* @todo Create two posts and try to update them both at the same time
*/
@johnregan3
johnregan3 / import_videos.php
Last active December 28, 2015 01:28
import_videos.php
<?php
// Untested Code!
//Generate New Page from Video
function copy_videos_to_pages( $post_id ) {
// Only if we're saving a flowplayer5 video
if ( 'flowplayer5' !== get_post_type( $post_id ) )
return $post_id;
@johnregan3
johnregan3 / removing-duplicates.php
Created November 15, 2013 20:35
Removing duplicate brightcove ID's
$playlist = array(
[0] => WP Post Object
[ID] => 1;
[_brightcove_id] = 1
[1] => WP Post Object
[ID] => 2;
[_brightcove_id] = 2
[2] => WP Post Object
[ID] => 3;
[_brightcove_id] = 1
@johnregan3
johnregan3 / schedule-event-tutorial.php
Last active December 29, 2015 21:30
Code for a wp_schedule_single_event Tutorial.
<?php
/**
* Plugin Name: Schedule Event Tutorial
* Description: Schedules single event to uncheck a checkbox on a custom Menu page
* Version: 0.1
* Author: John Regan
* Author URI: http://johnregan3.me
* Text Domain: setjr3
* License: GPLv2+
@johnregan3
johnregan3 / vertical-featured-image.php
Last active January 2, 2016 00:49
Add Support for Featured Images in you WordPress theme. Requires CSS like ".vertical-image { float:left; }" to work correctly.
@johnregan3
johnregan3 / jr3-improved-awp-rules.php
Last active February 13, 2016 01:56
My "improved" version of the AdvancedWP rules :D
<?php
/**
* Plugin Name: John Regan's Improved AWP Rules
* Plugin URI: https://gist.github.com/johnregan3/4a145185d97dd33806ad
* Version: 1.0
*
* @see http://www.advancedwp.org/awp-contribution-rules/
*
* Description: Yes, I get it -- this document was never intended to be technical, it's intended to be fun and readable.
* This is not intended to be a criticism of the original in any way; it's just a way for me to introduce myself to the group,