Hello wpDiscuz-Team,
one important thing for better SEO. Given "Load More"-link, which opens the (paginated) rest the comments to be shown, should come with a rel='nofollow' attribute. With given solution, without the nofollow-attribute, you're going to experiene Duplicate Content problems.
My currenty solution:
== wpdiscuz\templates\comment\comment-form.php
<a class="wc-load-more-link" href="<?php echo $wpdiscuz->helper->loadMoreLink($commentData['last_parent_id'], $post->ID); ?>">
=>
<a rel="nofollow" class="wc-load-more-link" href="<?php echo $wpdiscuz->helper->loadMoreLink($commentData['last_parent_id'], $post->ID); ?>">
Would be good, when this will be part of your code or it would be made available for configuration.
Best regards,
Carsten
Thank you for this suggestion and for the code. However I don't think this is a good solution. This will block SE indexing of rest comments. There should be more professional solution for such cases, we'll take a look on Google SEO Recommendations and find the best solution.
Hello,
you're right about the SE indexing when it's blocked this way. Take a deeper look:
https://happycarb.de/rezepte/backen/low-carb-krustenbrot/?wpdParentID=22357
Your given URL, coming with the question mark url parameter, should be switched to
https://happycarb.de/rezepte/backen/low-carb-krustenbrot/#wpdParentID=22357
With the hast parameter value, the doubled URL problem won't be a problem anymore.
Best regards,
Carsten