Advertisement
Guest User

Untitled

a guest
Feb 26th, 2017
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. add_action( 'some_image_preview', 'get_preview_image', 10, 1 );
  2.  
  3. function image_preview_add_meta_box() {
  4. add_meta_box(
  5. 'image_preview-image-preview',
  6. __( 'Image Preview', 'image_preview' ),
  7. 'image_preview_html',
  8. 'post',
  9. 'normal',
  10. 'high'
  11. );
  12. }
  13. add_action( 'add_meta_boxes', 'image_preview_add_meta_box' );
  14.  
  15. function image_preview_html( $post ) {
  16. wp_nonce_field( '_image_preview_nonce', 'image_preview_nonce' );
  17. do_action( 'some_image_preview', $post );
  18. }
  19.  
  20. function get_preview_image( $post ) {
  21. echo 'This is cool!';
  22. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement