Wordpress: Issues trying to display all comments in one page
- by KeyStroke
Hi,
I'm trying to modify my wordpress theme (inove) to display all comments in the same page instead of 50 comments per page.
I opened the comments.php file, commented out calls to paginate_comments_links() and and set the wp_list_comments() as follows:
wp_list_comments('type=comment&callback=custom_comments&per_page=100&page=1');
The problem is, whenever someone posts a comments, the comment form appends '/comment-page-2/' to the URL after submitting the comment, even though I've specified that all comments to be displayed on the same page.
Any idea what I could be missing?
Appreciate your help