Guest User

Untitled

a guest
Jan 19th, 2018
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. <?php
  2.  
  3. add_action( 'add_meta_boxes_comment', 'my_comments_more_info_metabox' );
  4.  
  5. function my_comments_more_info_metabox() {
  6. add_meta_box( 'my_comments_more_info', __( 'Additional Info' ), 'my_comments_more_info_metabox_display', 'comment' );
  7. }
  8.  
  9. function my_comments_more_info_metabox_display( $comment ) {
  10. echo 'User Agent: ' . esc_html( $comment->comment_agent );
  11. }
Add Comment
Please, Sign In to add comment