Changeset 30610
- Timestamp:
- 11/28/2014 11:21:40 AM (10 years ago)
- Location:
- trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-list-table.php
r30537 r30610 66 66 67 67 /** 68 * The view switcher modes 68 * The view switcher modes. 69 69 * 70 70 * @since 4.1.0 -
trunk/src/wp-includes/comment-template.php
r30547 r30610 54 54 function comment_author( $comment_ID = 0 ) { 55 55 $author = get_comment_author( $comment_ID ); 56 56 57 /** 57 58 * Filter the comment author's name for display. … … 77 78 function get_comment_author_email( $comment_ID = 0 ) { 78 79 $comment = get_comment( $comment_ID ); 80 79 81 /** 80 82 * Filter the comment author's returned email address. … … 105 107 function comment_author_email( $comment_ID = 0 ) { 106 108 $author_email = get_comment_author_email( $comment_ID ); 109 107 110 /** 108 111 * Filter the comment author's email for display. … … 158 161 function get_comment_author_email_link( $linktext = '', $before = '', $after = '' ) { 159 162 global $comment; 163 160 164 /** 161 165 * Filter the comment author's email for display. 162 166 * 163 167 * Care should be taken to protect the email address and assure that email 164 * harvesters do not capture your commenter s'email address.168 * harvesters do not capture your commenter's email address. 165 169 * 166 170 * @since 1.2.0 … … 281 285 $url = ('http://' == $comment->comment_author_url) ? '' : $comment->comment_author_url; 282 286 $url = esc_url( $url, array('http', 'https') ); 287 283 288 /** 284 289 * Filter the comment author's URL. … … 304 309 function comment_author_url( $comment_ID = 0 ) { 305 310 $author_url = get_comment_author_url( $comment_ID ); 311 306 312 /** 307 313 * Filter the comment author's URL for display. … … 572 578 function comment_excerpt( $comment_ID = 0 ) { 573 579 $comment_excerpt = get_comment_excerpt($comment_ID); 580 574 581 /** 575 582 * Filter the comment excerpt for display. … … 593 600 function get_comment_ID() { 594 601 global $comment; 602 595 603 /** 596 604 * Filter the returned comment ID. … … 1387 1395 * for more information on accepted arguments. 1388 1396 * @param object $comment The object of the comment being replied to. 1389 * @param WP_Post $post The WP_Postobject.1397 * @param WP_Post $post The {@see WP_Post} object. 1390 1398 */ 1391 1399 $args = apply_filters( 'comment_reply_link_args', $args, $comment, $post );
Note: See TracChangeset
for help on using the changeset viewer.