Skip to content

Instantly share code, notes, and snippets.

@bearded-avenger
Created December 6, 2013 16:45
Show Gist options
  • Save bearded-avenger/7828033 to your computer and use it in GitHub Desktop.
Save bearded-avenger/7828033 to your computer and use it in GitHub Desktop.
$meta_boxes[] = array(
'title' => __('Flacker Front Page Meta', 'fotos'),
'pages' => 'page',
'show_on' => array( 'page-template' => 'front-page.php' ),
'fields' => array(
array(
'id' => 'flacker_info_module',
'name' => __('Info Module', 'flacker'),
'type' => 'group',
'repeatable' => true,
'repeatable_max' => 20,
'sortable' => true,
'fields' => array(
array(
'id' => 'img',
'name' => 'Name',
'type' => 'image'
),
array(
'id' => 'text',
'name' => 'Value',
'type' => 'wysiwyg'
)
)
)
)
);
return $meta_boxes;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment