Advertisement
Guest User

Untitled

a guest
Dec 9th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. function cwf_create_enquiry_metabox_html() // Create custom metabox HTML
  2. {
  3. $post_id = $_GET['post'];
  4.  
  5. echo '<p class="sender_information">' . wpautop(esc_textarea(get_post_meta($post_id, 'message', true))) . '</p>';
  6. echo '<p class="sender_information">Received: <b>' . get_the_time('j F Y @ H:i', $post->ID) . '</b></p>';
  7. }
  8.  
  9. add_meta_box('sender-information', 'Sender Information', 'cwf_create_sender_information_metabox_html', 'form-enquiry', 'side');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement