Created
April 20, 2013 14:39
-
-
Save netaustin/5426194 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// put this in functions.php or an include file | |
add_action( 'init', function() { | |
$fm = new Fieldmanager_Group( array( | |
'name' => 'contact_information', | |
'children' => array( | |
'name' => new Fieldmanager_Textfield( 'Name' ), | |
'phone_number' => new Fieldmanager_Textfield( 'Phone Number' ), | |
'website' => new Fieldmanager_Link( 'Website' ), | |
), | |
) ); | |
$fm->add_meta_box( 'Contact Information', array( 'post' ) ); | |
} ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment