Advertisement
leadbellydesign

Custom Meta Boxes - WP

Aug 24th, 2011
129
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.56 KB | None | 0 0
  1. $meta_boxes[] = array(
  2.     'id' => 'coupon',
  3.     'title' => 'Offer Code',
  4.     'pages' => array('post', 'link'), // multiple post types, accept custom post types
  5.     'context' => 'normal', // normal, advanced, side (optional)
  6.     'priority' => 'high', // high, low (optional)
  7.     'fields' => array(
  8.             array(
  9.             'name' => 'Offer Code',
  10.             'desc' => 'Enter offer code text here',
  11.             'id' => $prefix . 'code',
  12.             'type' => 'textarea' // text area
  13.         ),
  14.         array(
  15.             'name' => 'Expiration Date',
  16.             'desc' => 'Enter date here (Month 01, 2011)',
  17.             'id' => $prefix . 'expidate',
  18.             'type' => 'text'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement