Skip to content

Instantly share code, notes, and snippets.

@Otto42
Created January 13, 2014 05:12
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 Otto42/8395089 to your computer and use it in GitHub Desktop.
Save Otto42/8395089 to your computer and use it in GitHub Desktop.
Simple meta box plugin
<?php
/*
Plugin Name: Demo of a Metabox
*/
add_action('add_meta_boxes','my_meta_box_add');
function my_meta_box_add() {
add_meta_box( 'my-meta-box', 'My Meta Box', 'my_meta_box', 'post', 'side');
}
function my_meta_box() {
?>
<h1>This is my meta box!</h1>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment