WP hooks navigation: Home/browse • Actions index • Filters index
To save our bandwidth, we show only a snippet of code around each occurence of the hook. View complete file in SVN (without highlighting).
The best way to understand what a hook does is to look at where it occurs in the source code.
do_action( "hook_name" )
apply_filters( "hook_name", "what_to_filter" )
.Remember, this hook may occur in more than one file. Moreover, the hook's context may change from version to version.
Line | Code |
---|---|
655 | ); |
656 | } |
657 | } |
658 |
|
659 | comment_text( $comment ); |
660 | if ( $this->user_can ) { ?> |
661 | <div id="inline-<?php echo $comment->comment_ID; ?>" class="hidden"> |
662 | <textarea class="comment" rows="1" cols="1"><?php |
663 | /** This filter is documented in wp-admin/includes/comment.php */ |
664 | echo esc_textarea( apply_filters( 'comment_edit_pre', $comment->comment_content ) ); |
665 | ?></textarea> |
666 | <div class="author-email"><?php echo esc_attr( $comment->comment_author_email ); ?></div> |
667 | <div class="author"><?php echo esc_attr( $comment->comment_author ); ?></div> |
668 | <div class="author-url"><?php echo esc_attr( $comment->comment_author_url ); ?></div> |
669 | <div class="comment_status"><?php echo $comment->comment_approved; ?></div> |
670 | </div> |
671 | <?php |
672 | } |
673 | } |