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
2069                          $parent_link = esc_url( get_comment_link( $comment->comment_parent ) );
2070                          $name = apply_filters( 'get_comment_author', $parent->comment_author ); // there's no API function for this
2071                          printf( ' | '.__( 'In reply to <a href="%1$s">%2$s</a>.' ), $parent_link, $name );
2072                     }
2073
2074                     echo '</div>';
2075                     comment_text();
2076                     if ( $user_can ) { ?>
2077                     <div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden">
2078                     <textarea class="comment" rows="1" cols="1"><?php echo htmlspecialchars( apply_filters('comment_edit_pre', $comment->comment_content), ENT_QUOTES ); ?></textarea>
2079                     <div class="author-email"><?php echo esc_attr( $comment->comment_author_email ); ?></div>
2080                     <div class="author"><?php echo esc_attr( $comment->comment_author ); ?></div>
2081                     <div class="author-url"><?php echo esc_attr( $comment->comment_author_url ); ?></div>
2082                     <div class="comment_status"><?php echo $comment->comment_approved; ?></div>
2083                     </div>
2084                     <?php
2085                     }
2086
2087                     if ( $user_can ) {