Get number of comments per page

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.

Related posts

Leave a Reply

1 comment

  1. 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.