Created
January 8, 2015 01:42
-
-
Save arelthia/54340e7e4bd67ad43cc3 to your computer and use it in GitHub Desktop.
Tips Meta Box
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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