Skip to content

Instantly share code, notes, and snippets.

<?php
/*
Plugin Name: Color Rotator
Description: Change the color scheme every time you login
Author: Aaron Jorbin
Version: 1.0
Author URI: http://aaron.jorb.in/
License: GPLv2 or later
*/
@ryelle
ryelle / press-publish-date.php
Created November 27, 2012 19:48
Press "Published Date" Metabox
<?php
/**
* Add Press Custom Post Type Metaboxes
*/
add_action( 'add_meta_boxes', 'add_press_metaboxes' );
// Add the Press Meta Boxes
function add_press_metaboxes() {
add_meta_box('press_publish_date', 'Published Date', 'press_publish_date', 'press', 'normal', 'high');