an action
action是事件,在某一时刻自定义事件或者动作。
提交comments的时候,发送邮件:
1 <?php 2 function cc_comment() 3 { 4 global $_REQUEST; 5 $to = "kalintw@gmail.com"; 6 $subject = "new comment posted @ your blog " . $_REQUEST['subject']; 7 $msg = "Message from: " . $_REQUEST['author'] . " at email " . $_REQUEST['email'] . 8 ": \n" . $_REQUEST['comment']; 9 mail($to, $subject, $msg); 10 } 11 12 add_action('comment_post', 'cc_comment'); 13 ?>
浙公网安备 33010602011771号