Skip to content

Instantly share code, notes, and snippets.

@aduth
Created January 21, 2019 13:32
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 aduth/cc858440e8d49e624fd75d318e7eca67 to your computer and use it in GitHub Desktop.
Save aduth/cc858440e8d49e624fd75d318e7eca67 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin name: Demo Meta
*/
function demo_meta_box_add() {
add_meta_box(
'demo-meta-box',
'Demo Meta Box',
'demo_meta_box_callback',
'post',
'normal',
'high'
);
}
add_action( 'add_meta_boxes', 'demo_meta_box_add' );
function demo_meta_box_callback() {
echo '<input>';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment