Advertisement
Guest User

Untitled

a guest
May 27th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. <?php
  2. apply_filters( 'fv_user_mail_body', 'fv_filter_user_mail_body', 10, 2 );
  3.  
  4. function fv_filter_user_mail_body($body, $photo) {
  5. $body = str_replace('{contestant_description}', $photo->description, $body);
  6. $body = str_replace('{contestant_full_description}', $photo->full_description, $body);
  7. return $body;
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement