Skip to content

Instantly share code, notes, and snippets.

@matthewpizza
Last active August 29, 2015 14:05
Show Gist options
  • Save matthewpizza/a5c07d896dc6b522c69e to your computer and use it in GitHub Desktop.
Save matthewpizza/a5c07d896dc6b522c69e to your computer and use it in GitHub Desktop.
<?php
add_action( 'init', function() {
$fieldmanager = new Fieldmanager_Group( array(
'name' => 'tc_faq_fields',
'limit' => 0,
'label' => 'New FAQ',
'label_macro' => array( 'FAQ: %s', 'question' ),
'add_more_label' => 'Add another FAQ',
'collapsible' => true,
'collapsed' => false,
'sortable' => true,
'children' => array(
'question' => new Fieldmanager_Textfield( 'Question' ),
'answer' => new Fieldmanager_TextArea( 'Answer' ),
),
) );
$fieldmanager->add_meta_box( 'FAQ', array( 'faq' ) );
} );
@matthewpizza
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment