Menu Adam R Brown

WP hooks navigation: Home/browseActions indexFilters index

Source View: comment_edit_pre

To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).

Understanding Source Code

The best way to understand what a hook does is to look at where it occurs in the source code.

Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.

Source View

Line Code
364                $parent_link = esc_url( get_comment_link( $comment->comment_parent ) );
365                $name = get_comment_author( $parent->comment_ID );
366                printf( ' | '.__( 'In reply to <a href="%1$s">%2$s</a>.' ), $parent_link, $name );
367           }
368
369           echo '</div>';
370           comment_text();
371           if ( $user_can ) { ?>
372           <div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden">
373           <textarea class="comment" rows="1" cols="1"><?php echo esc_textarea( apply_filters( 'comment_edit_pre', $comment->comment_content ) ); ?></textarea>
374           <div class="author-email"><?php echo esc_attr( $comment->comment_author_email ); ?></div>
375           <div class="author"><?php echo esc_attr( $comment->comment_author ); ?></div>
376           <div class="author-url"><?php echo esc_attr( $comment->comment_author_url ); ?></div>
377           <div class="comment_status"><?php echo $comment->comment_approved; ?></div>
378           </div>
379           <?php
380           }
381
382           if ( $user_can ) {