I am trying to grab number of comments to display per page. So far unsuccessful, looking for something similar to this $wp_query->max_num_pages;
Thanks.
1 Answer
From quick look at core that would probably be get_option('comments_per_page')
.
However WP functions just use this internally, why not just let them take care of it? You are not describing why do you need to handle this directly.