Skip to content

Instantly share code, notes, and snippets.

Created July 31, 2011 00:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save anonymous/1116170 to your computer and use it in GitHub Desktop.
Save anonymous/1116170 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