Skip to content

Instantly share code, notes, and snippets.

@edbury
Created February 2, 2013 15:17
Show Gist options
  • Save edbury/4697793 to your computer and use it in GitHub Desktop.
Save edbury/4697793 to your computer and use it in GitHub Desktop.
<?php
/*
Title: Company Information
Description: My cool new meta box
Post Type: company
Context: normal
Priority: high
Order: 1
Collapse: false
*/
piklist('field', array(
'type' => 'text'
,'scope' => 'post_meta'
,'field' => 'url'
,'label' => 'Company URL'
,'description' => 'Field Description'
,'attributes' => array(
'class' => 'text'
)
));
piklist('field', array(
'type' => 'text'
,'scope' => 'post_meta'
,'field' => 'twitter'
,'label' => 'Twitter'
,'description' => 'Field Description'
,'attributes' => array(
'class' => 'text'
)
));
piklist('field', array(
'type' => 'text'
,'scope' => 'post_meta'
,'field' => 'facebook'
,'label' => 'Facebook'
,'description' => 'Field Description'
,'attributes' => array(
'class' => 'text'
)
));
piklist('field', array(
'type' => 'text'
,'scope' => 'post_meta'
,'field' => 'google'
,'label' => 'Google+'
,'description' => 'Field Description'
,'attributes' => array(
'class' => 'text'
)
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment