| | 111 | |
| | 112 | <?php |
| | 113 | $permalink = get_permalink( $comment->comment_post_ID ); |
| | 114 | $comment_title = get_the_title( $comment->comment_post_ID ); |
| | 115 | if ( ! empty( $permalink ) && ! empty( $comment_title ) ) : ?> |
| | 116 | <div class="misc-pub-section misc-pub-response-to"> |
| | 117 | <?php _e( 'In response to' ); ?>: |
| | 118 | <a href="<?php echo esc_url( $permalink ); ?>"><?php echo esc_html( $comment_title ); ?></a> |
| | 119 | </div> |
| | 120 | <?php endif; ?> |
| | 121 | |
| | 122 | <?php |
| | 123 | $comment_author = get_comment_author( $comment->comment_parent ); |
| | 124 | $comment_link = get_comment_link( $comment->comment_parent ); |
| | 125 | if ( ! empty( $comment_author ) && ! empty( $comment_link ) ) : ?> |
| | 126 | <div class="misc-pub-section misc-pub-reply-to"> |
| | 127 | <?php _e( 'In reply to' ); ?>: |
| | 128 | <a href="<?php echo esc_url( $comment_link ); ?>"><?php echo esc_html( $comment_author ); ?></a> |
| | 129 | </div> |
| | 130 | <?php endif; ?> |
| | 131 | |