Advertisement
Guest User

Untitled

a guest
May 27th, 2016
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. // Filter to Attach HR Resume
  2. add_filter('sjb_hr_notification_attachment', 'custom_code_for_hr_resume_attachment', 20, 2);
  3.  
  4. function custom_code_for_hr_resume_attachment( $resume_path, $post_id ){
  5.  
  6. // Write custom code here.
  7. return get_post_meta($post_id, 'resume', TRUE);
  8.  
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement