| 8 | |
| 9 | NOTE - the workaround I had to implement was something like this: |
| 10 | |
| 11 | $commentField = '<p class="comment-form-comment"><label for="comment">' . _x( 'Comment', 'noun' ) . '</label> <textarea id="comment" name="comment" cols="45" rows="8" aria-required="true" required="required"></textarea></p>'. addMySpecialStuff($post->ID); |
| 12 | |
| 13 | $comment_args = array( |
| 14 | 'comment_notes_after'=>'', |
| 15 | 'logged_in_as'=>'', |
| 16 | 'title_reply'=>'', |
| 17 | 'comment_field' =>$commentField, |
| 18 | ); |
| 19 | where the addMySpecialStuff function was simply appending the HTML I wanted after the comment field and the submit button. |