Skip to content

Instantly share code, notes, and snippets.

@rosshanney
rosshanney / currency-thingy.php
Created March 4, 2012 11:40
Currency switcher thingy
<?php
/*
Plugin name: Currency switcher thingy
*/
add_action( 'plugins_loaded', 'currency_setup' );
function currency_setup() {
add_action( 'publish_post', 'currency_publish_post' );
}
@rosshanney
rosshanney / gce-event.php
Created February 26, 2012 13:55
Extra shortcodes
<?php
class GCE_Event{
private $id;
private $title;
private $description;
private $location;
private $start_time;
private $end_time;
private $link;
private $type;