Advertisement
Guest User

Untitled

a guest
Jun 29th, 2010
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. add_filter('wpcf7_special_mail_tags','wpcf7_currentuser_shortcode_handler',10,2);
  2.  
  3. function wpcf7_currentuser_shortcode_handler($output,$name) {
  4.  
  5.     global $current_user;
  6.  
  7.     if($name=='currentuser') {
  8.         wp_get_current_user();
  9.         $output .= $current_user->name . "\n";
  10.     }
  11.    
  12.     return $output;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement