Advertisement
Guest User

Untitled

a guest
Jul 16th, 2012
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. //if ( is_page_template('template-thankyou.php') ) {
  2.  
  3. function eh_add_product_tracking_code(){
  4. global $post;
  5.  
  6. $meta_key = 'product_code';
  7. $meta_value = get_post_meta($post->ID, $meta_key, true);
  8.  
  9. if (strlen($meta_value)<1){
  10. $meta_value = "This is Blank!";
  11. }
  12. return $meta_value;
  13. }
  14.  
  15. add_action('wp_footer', 'eh_add_product_tracking_code');
  16.  
  17. //}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement