wordpress - call a function when a comment is post

2019-05-16 10:08发布

I would like to take some action in php whenever someone posts a comment. How can I set up a hook for that? I assume it would go in functions.php...

EDIT - here is my udpated code:

add_action('comment_post', 'comment_posted');


    function comment_posted() {
        $MyClass = new MyClass(); //I do this in other functions and don't have any blank screen problems
            $test = "";
            $MyClass->doSomething($test); 
    }

1条回答
ら.Afraid
2楼-- · 2019-05-16 10:36

See: http://codex.wordpress.org/Function_Reference/wp_new_comment

Calls 'comment_post' action with comment ID and whether comment is approved by WordPress.

You should be able to then call add_action('comment_post', 'my_func'); from within your functions.php.

查看更多
登录 后发表回答