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.
Leave a Reply
You must be logged in to post a comment.
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.
You must be logged in to post a comment.
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.