• Resolved Horace

    (@ediebaloo)


    I wanna have a little bit at the top of replies that says something like:

    This is a reply to Mary’s comment: Comment innards excerpt here…

Viewing 1 replies (of 1 total)
  • Thread Starter Horace

    (@ediebaloo)

    For inquiring minds:

    function reply_woohoo($comment) {
    $comment_handle = get_comment(get_comment_id());
    if ($comment_handle->comment_parent) {
    $parent = get_comment( $comment_handle->comment_parent );
    
    $parent_author = get_comment_author($parent);
    $parent_comment = get_comment_excerpt($parent);
    $comment= '<div class="commentreplywoohoo">This is a reply to '.$parent_author.'\'s comment: '.$parent_comment.'</div>' . $comment;
    }
    return $comment;
    }
    add_filter('get_comment_text', 'reply_woohoo');
Viewing 1 replies (of 1 total)
  • The topic ‘How Can I Put An Excerpt From The Original Comment On Replies’ is closed to new replies.