Skip to content

Instantly share code, notes, and snippets.

@andrewheins
Created July 11, 2012 16:33
Show Gist options
  • Save andrewheins/3091578 to your computer and use it in GitHub Desktop.
Save andrewheins/3091578 to your computer and use it in GitHub Desktop.
WP - Meta Spec
/*
* WordPress MetaBox Spec
*/
<?php
$DEF_mb = new WPAlchemy_MetaBox(array(
'id' => 'DEF',
'title' => 'DEF',
'types' => array('page'),
'context' => 'normal', // defaults to "normal"
'priority' => 'high', // defaults to "high"
'template' => get_stylesheet_directory() . '/library/metaboxes/DEF-meta.php',
'include_template' => 'DEF'
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment