this bugfix I find here https://www.w3it.org/forums/showthread.php?p=1801#post1801
This is the tricky way to solve:
Open the wordpress file wp-includes/comment-template.php and search for this line contained inside the function get_comment_link():
Code:
return add_query_arg( ‘cpage’, $args[‘page’], get_permalink( $comment->comment_post_ID ) ) . ‘#comment-‘ . $comment->comment_ID;the tricky way is to substitute the above with this code:
Code:
return add_query_arg( ‘amp;cpage’, $args[‘page’], get_permalink( $comment->comment_post_ID ) ) . ‘#comment-‘ . $comment->comment_ID;Save and overwrite the original comment-template.php file with the new edited: enjoy now your wordpress comment feed correctly resumed.
But I still have a problem with my main feed. It caused in both comments and posts и & sign at links.. Pls help me to add amp; in right place at post php-file.. I think it should be post-template.php file.