我正在尝试将内容注入到 comment_template() 中,类似于使用 comment_form() 的方式。
例如:
<?php
$args = array("comment_notes_before" => myrp_api_ratings_form_table(null, true));
comment_form($args);
?>
这将使 myrp_api_ratings_form_table 函数返回的内容出现在评论表单之前,而不是在提交按钮之后。
有没有办法做类似的事情,但使用 comment_template() 函数?我试着看一下手抄本,但没有运气。此外,是否有任何好的链接可以进一步修改 comment_template() 的输出?
谢谢