我不太清楚你到底想在哪里“注入”这个JS。"After a new comment has been made"
, 在WP术语和php工作流中,可能意味着几件事。(例如,当发出$POST请求时,当触发动作时,当对其进行检查、清理时,当其插入DB时等。)
无论如何,你需要寻找合适的wp actions / filters 你可以钓到的,比如comment_post
行动(遗憾的是未在codex-GIYBF中记录),或comment_post_redirect
过滤器(也未在codex中记录)或wp_insert_comment
操作(在将注释插入DB后运行)并使用这些操作包括JS。。
例如:
add_action (\'comment_post\',\'my_comments_js_function\');// runs when comments are POSTED
然后
my_comments_js_function(){
// do your JS stuff.
}
但正如我所说,我真的不清楚你到底想要什么,什么时候想要。