Advertisement
Guest User

Untitled

a guest
Mar 5th, 2015
220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. function blog_meta_box() {
  2. add_meta_box(
  3. 'blog_meta_box',
  4. __( 'Other Details', 'myplugin_textdomain' ),
  5. 'blog_meta_box_content',
  6. 'post',
  7. 'normal',
  8. 'high'
  9. );
  10. }
  11.  
  12. function blog_meta_box_content( $post ) {
  13. wp_nonce_field( plugin_basename( __FILE__ ), 'blog_meta_box_content_nonce' );
  14.  
  15. $include_featured = get_post_meta( $post->ID, 'include_featured', true );
  16. ?>
  17. <table width="100%" class="aankun_custom_metabox">
  18. <tr>
  19. <td width="200">Featured Image on Detail</td>
  20. <td>
  21. <select name="include_featured">
  22. <option value="no" <?php if($include_featured=='no') echo 'selected="selected"'; ?> >no</option>
  23. <option value="yes" <?php if($include_featured=='yes') echo 'selected="selected"'; ?> >yes</option>
  24. </select>
  25. </td>
  26. </tr>
  27. </table>
  28. <?php
  29. }
  30.  
  31. add_action( 'add_meta_boxes', 'blog_meta_box' );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement