Skip to content

Instantly share code, notes, and snippets.

@Dirtyern12
Created October 13, 2014 04:37
Show Gist options
  • Save Dirtyern12/e840f301b15c24560632 to your computer and use it in GitHub Desktop.
Save Dirtyern12/e840f301b15c24560632 to your computer and use it in GitHub Desktop.
function metaboxes() {
add_meta_box('contact-information', 'Splash Page', array( $this, 'contact_information' ), $this->pagehook, 'main', 'high');
}
/**
* Callback for Contact Information metabox
*
* @since 1.0.0
*
* @see Child_Theme_Settings::metaboxes()
*/
function contact_information() {
echo '<p>Editor<br />';
wp_editor( $this->get_field_value( 'splash' ), $this->get_field_name( 'splash' ) );
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment