Custom action on comment post

时间:2012-09-15 作者:iRector

每当用户发表评论时,我基本上希望将该帖子的副本发送到另一个数据库中,用于单独的站点。数据库部分很简单,但我似乎找不到合适的操作挂钩。(我用一个简单的echo语句进行了测试,失败的原因是它根本没有显示)“comment\\u save\\u pre”只在更新注释时起作用,“wp\\u set\\u comment\\u status”只在注释被批准时起作用,“comment\\u post”似乎根本不起作用。挂钩是否存在?

add_action(\'...?...\', \'on_comment_post\');

function on_comment_post($comment){
     echo "Test";
}

1 个回复
最合适的回答,由SO网友:Mamaduka 整理而成

您可以使用wp_insert_comment 操作,该操作在每次插入注释时触发。

结束

相关推荐

Php文件中的输出菜单导航

我有一个WordPress网站,它在页面顶部生成一个菜单,其中包含:<?php wp_nav_menu( array( \'container_class\' => \'menu-header\', \'theme_location\' => \'primary\' ) ); ?> 此行位于名为header.php. (wp admin中的位置为:Appearance -> Editor -> Templates -> Header (header.ph