Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created January 21, 2012 02:28
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 billerickson/1650841 to your computer and use it in GitHub Desktop.
Save billerickson/1650841 to your computer and use it in GitHub Desktop.
Admin Pages - Add Metaboxes
<?php
/**
* Register metaboxes on Child Theme Settings page
*
* @since 1.0.0
*
* @see Child_Theme_Settings::contact_information() Callback for contact information
*/
function metaboxes() {
add_meta_box('contact-information', 'Contact Information', array( $this, 'contact_information' ), $this->pagehook, 'main', 'high');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment