Advertisement
Guest User

Untitled

a guest
May 30th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. function foobar_metabox_callback( $post ) {
  2. wp_nonce_field( basename( __FILE__ ), 'metabox_meta_nonce' );
  3. $metabox_stored_meta = get_post_meta( $post->ID );
  4. if ( has_post_thumbnail() ) { ?>
  5. <p>
  6. <!-- show results -->
  7. </p>
  8. <?php } else { ?>
  9. <p>No Featured Image not loaded</p>
  10. <?php
  11. }
  12.  
  13. // test the meta content
  14. $getPostCustom=get_post_custom();
  15. var_dump($getPostCustom);
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement