Advertisement
darrenbachan

Untitled

Jun 6th, 2016
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.52 KB | None | 0 0
  1. <?php
  2.  
  3. function dbwp_add_custom_metabox() {
  4.  
  5.     add_meta_box(
  6.         'dbwp_meta',
  7.         'Upcoming Game',
  8.         'dbwp_meta_callback',
  9.         'game',
  10.         'normal',
  11.         'core'
  12.     );
  13.  
  14. }
  15. add_action('add_meta_boxes', 'dbwp_add_custom_metabox');
  16.  
  17. function dbwp_meta_callback() {
  18.     ?>
  19.  
  20.     <div>
  21.         <div class="meta-row">
  22.             <div class="meta-th">
  23.                 <label for="game-id" class="dbwp-row-title">Game ID</label>
  24.             </div>
  25.             <div class="meta-td">
  26.                 <input type="text" name="game-id" id="job-id" value="">
  27.             </div>
  28.         </div>
  29.     </div>
  30.  
  31.     <?php  
  32. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement