Ticket #16944: 16944.diff
| File 16944.diff, 1.1 KB (added by solarissmoke, 2 years ago) |
|---|
-
wp-includes/comment-template.php
307 307 $classes[] = ( empty( $comment->comment_type ) ) ? 'comment' : $comment->comment_type; 308 308 309 309 // If the comment author has an id (registered), then print the log in name 310 if ( $comment->user_id > 0 && $user = get_userdata( $comment->user_id) ) {311 // For all registered users , 'byuser'310 if ( $comment->user_id > 0 && $user = get_userdata( $comment->user_id ) ) { 311 // For all registered users (site-wide), 'byuser' 312 312 $classes[] = 'byuser'; 313 313 $classes[] = 'comment-author-' . sanitize_html_class($user->user_nicename, $comment->user_id); 314 315 // For current blog users 316 if ( ! is_multisite() || is_user_member_of_blog( $comment->user_id ) ) 317 $classes[] = 'by-blog-user'; 318 314 319 // For comment authors who are the author of the post 315 if ( $post = get_post( $post_id) ) {320 if ( $post = get_post( $post_id ) ) { 316 321 if ( $comment->user_id === $post->post_author ) 317 322 $classes[] = 'bypostauthor'; 318 323 }