Title: jphva's Replies | WordPress.org

---

# jphva

  [  ](https://wordpress.org/support/users/jphva/)

 *   [Profile](https://wordpress.org/support/users/jphva/)
 *   [Topics Started](https://wordpress.org/support/users/jphva/topics/)
 *   [Replies Created](https://wordpress.org/support/users/jphva/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/jphva/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/jphva/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/jphva/engagements/)
 *   [Favorites](https://wordpress.org/support/users/jphva/favorites/)

 Search replies:

## Forum Replies Created

Viewing 1 replies (of 1 total)

 *   Forum: [Alpha/Beta/RC](https://wordpress.org/support/forum/alphabeta/)
    In 
   reply to: [Changes in WP 2.7 actions?](https://wordpress.org/support/topic/changes-in-wp-27-actions/)
 *  [jphva](https://wordpress.org/support/users/jphva/)
 * (@jphva)
 * [17 years, 3 months ago](https://wordpress.org/support/topic/changes-in-wp-27-actions/#post-898441)
 * I got the following to do what I needed:
 * `add_filter('the_editor', 'my_function');`
 * Your function will be passed the HTML code for the on-page comment editor. You’ll
   need to be sure to return that code, otherwise your editor will disappear. Look
   in /wp-includes/general-template.php for more.
 * Sample code:
 *     ```
       function my_function($html) {
       $output = $html;
       $output .= ...your html code if applicable
       ...or do whatever you need
       return $output;
       }
       ```
   

Viewing 1 replies (of 1 total)