wordpress - 发布评论时调用函数

发布于 2024-11-02 22:41:43 字数 379 浏览 0 评论 0原文

每当有人发表评论时,我想在 php 中采取一些操作。我怎样才能为此设置一个钩子?我假设它会进入functions.php...

编辑-这是我更新的代码:

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); 
    }

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); 
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吃→可爱长大的 2024-11-09 22:41:43

请参阅:http://codex.wordpress.org/Function_Reference/wp_new_comment

使用评论 ID 以及评论是否获得 WordPress 批准来调用“comment_post”操作。

然后您应该能够从functions.php 中调用add_action('comment_post', 'my_func');

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文