导航

用户登录

最新评论

聚合

聚合内容

在线用户

目前共有 0 位用户1 位游客在线。

相关链接:

wp add_action

由 guoshuang 于 周二, 02/09/2010 - 10:11 提交。

function email_friends($post_ID) {
$friends = 'bob@example.org, susie@example.org';
mail($friends, "sally's blog updated" , 'I just put something on my blog: http://blog.example.com');
return $post_ID;
}

add_action('publish_post', 'email_friends');

function echo_comment_id($comment_ID) {
echo "I just received $comment_ID";
}
add_action('comment_id_not_found','echo_comment_id', 10, 1);

http://codex.wordpress.org/Function_Reference/add_action

由 guoshuang 于 周二, 02/09/2010 - 10:11 提交。
by guoshuang 2007 with drupal. RSS Sitemap