Skip to content

Instantly share code, notes, and snippets.

@arelthia
Created January 8, 2015 01:42
Show Gist options
  • Select an option

  • Save arelthia/54340e7e4bd67ad43cc3 to your computer and use it in GitHub Desktop.

Select an option

Save arelthia/54340e7e4bd67ad43cc3 to your computer and use it in GitHub Desktop.
Tips Meta Box
<?php //You will probally need to remove this
function tip_meta_box(){
add_meta_box('tip_box', 'Things to Remember', 'tip_callback', 'post', 'side', 'high');
}
add_action('add_meta_boxes', 'tip_meta_box');
function tip_callback($post){
?>
<p>Do not forget to include these things in your post.</p>
<li>Thing 1</li>
<li>Thing 2</li>
<li>Thing 3</li>
<li>Thing 4</li>
<?php
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment