Skip to content

Instantly share code, notes, and snippets.

@farinspace
Forked from anonymous/functions.php
Created July 31, 2011 00:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save farinspace/1116182 to your computer and use it in GitHub Desktop.
Save farinspace/1116182 to your computer and use it in GitHub Desktop.
WPAlchemy - Issue getting value pulled into page template
<?php
// add Gallery Images custom meta box
$mgallery = new WPAlchemy_MetaBox(array
(
'id' => '_gallery_main',
'title' => 'Gallery Images',
'types' => array('gallery_main'), // added only for pages
'context' => 'normal', // same as above, defaults to "normal"
'priority' => 'high', // same as above, defaults to "high"
'template' => TEMPLATEPATH . '/custom/gallery_images_repeatingfields.php',
'hide_editor' => TRUE
));
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment