Changes between Version 3 and Version 4 of Ticket #16576, comment 9
- Timestamp:
- 08/24/2015 02:14:27 PM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #16576, comment 9
v3 v4 7 7 Carl 8 8 9 NOTE - the workaround I had to implement was something like this: 9 NOTE - I was able to work around this issue by replacing the comment field with custom HTML that included my input fields. 10 11 {{{ 10 12 11 13 $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); … … 16 18 'comment_field' =>$commentField, 17 19 ); 20 }}} 21 18 22 19 23 where the addMySpecialStuff function was simply appending the HTML I wanted after the comment field and the submit button.