How to rearrange fields in comment_form()

Im using a custom filter to change the fields, but can´t figure out how to change the order of the fields in the comment form. Desired order: comment field (first/top) name email website This is the code which I am currently using: function alter_comment_form_fields($fields){ $fields[‘comments’] = ‘Test’; $fields[‘author’] = ‘<p class=”comment-form-author”>’ . ‘<label for=”author”>’ . … Read more

What tools are available for managing/writing to WordPress? [closed]

Closed. This question needs to be more focused. It is not currently accepting answers. Want to improve this question? Update the question so it focuses on one problem only by editing this post. Closed 8 years ago. Improve this question Aside from the actual WordPress dashboard, what tools are available for writing posts, moderating comments, … Read more

Is there a way to convert all comments into javadoc comments? [Eclipse/Java]

Javadocs are a specific comment format used to generate external documentation for your code. You shouldn’t be converting regular comments to Javadoc. For example: /** * Do foo with a. * @param a the a value * @return some different value * @see #bar */ public String foo(String a) { // blah blah blah } … Read more