%PDF- %PDF-
Direktori : /home/jalalj2hb/www/wp-content/themes/pixel-linear/functions/ |
Current File : /home/jalalj2hb/www/wp-content/themes/pixel-linear/functions/comments-layout.php |
<?php /** * Template for comments and pingbacks. * * To override this walker in a child theme without modifying the comments * template simply create your own pixlin_comment(), and that function * will be used instead. * * Used as a callback by wp_list_comments() for displaying the comments. * * * @param object $comment Comment to display. * @param array $args Optional args. * @param int $depth Depth of comment. * @return void */ if ( ! function_exists( 'pixlin_comment' ) ) : function pixlin_comment( $comment, $args, $depth ) { $GLOBALS['comment'] = $comment; switch ( $comment->comment_type ) : case 'pingback' : case 'trackback' : // Display trackbacks differently than normal comments. ?> <li id="comment-<?php comment_ID(); ?>" <?php comment_class(); ?>> <p><?php _e( 'Pingback:', 'wpex' ); ?> <?php comment_author_link(); ?> <?php edit_comment_link( __( 'Edit', 'wpex' ), '<span class="ping-meta"><span class="edit-link">', '</span></span>' ); ?></p> <?php break; default : // Proceed with normal comments. ?> <li id="li-comment-<?php comment_ID(); ?>"> <article id="comment-<?php comment_ID(); ?>" <?php comment_class(); ?>> <div class="comment-author vcard"> <?php echo get_avatar( $comment, 40 ); ?> </div><!-- .comment-author --> <div class="comment-details comment-body clr"> <header class="comment-meta"> <cite class="fn"><?php comment_author_link(); ?></cite> <br /> <div class="comment-date"> <?php printf( '<a href="%1$s"><time datetime="%2$s">%3$s</time></a>', esc_url( get_comment_link( $comment->comment_ID ) ), get_comment_time( 'c' ), sprintf( _x( '%1$s at %2$s', '1: date, 2: time', 'wpex' ), get_comment_date(), get_comment_time() ) ); ?> </div><!-- .comment-date --> </header><!-- .comment-meta --> <?php if ( '0' == $comment->comment_approved ) : ?> <p class="comment-awaiting-moderation"><?php _e( 'Your comment is awaiting moderation.', 'wpex' ); ?></p> <?php endif; ?> <div class="comment-content"> <?php comment_text(); ?> </div><!-- .comment-content --> <div class="reply"> <?php comment_reply_link( array_merge( $args, array( 'reply_text' => __( 'reply', 'wpex' ), 'depth' => $depth, 'max_depth' => $args['max_depth'] ) ) ); ?> </div><!-- .reply --> </div><!-- .comment-details --> </article><!-- #comment-## --> <?php break; endswitch; // End comment_type check. } endif;