Questions tagged «comment-form»

5
如何重新排列comment_form()中的字段
我正在使用自定义过滤器来更改字段,但是无法弄清楚如何更改注释表单中字段的顺序。 所需订单: 评论栏(第一/顶部) 名称 电子邮件 网站 这是我当前正在使用的代码: function alter_comment_form_fields($fields){ $fields['comments'] = 'Test'; $fields['author'] = '<p class="comment-form-author">' . '<label for="author">' . __( 'Your name, please' ) . '</label> ' . ( $req ? '<span class="required">*</span>' : '' ) . '<input id="author" name="author" type="text" placeholder="John Smith" value="' . esc_attr( $commenter['comment_author'] ) . …

4
从评论和答复中删除“网站”字段?
为了与垃圾评论作斗争,我想隐藏或删除“留下回复”部分中的“网站”字段,以获取页面和网站评论。 我不希望通过让其他人在我的网站评论中嵌入他们的URL来提高其他人的网页排名,这似乎就是我网站上99%的评论想要做的事情。 如果答案有任何不同,我正在使用“二十十”主题。 谢谢!
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.