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 | |
| function add_embed_tweet_meta_box() { | |
| add_meta_box( | |
| 'paulund_embed_tweet_meta_box', // $id | |
| 'Post Embed Tweets Meta Box', // $title | |
| 'show_embed_tweet_meta_box', // $callback | |
| 'post', // $page | |
| 'normal', // $context | |
| 'high'); // $priority | |
| } |
NewerOlder