| 547 | | function comments_number( $zero = false, $one = false, $more = false, $deprecated = '' ) { |
| | 546 | function comments_number() { |
| | 547 | $args = func_get_args(); |
| | 548 | echo call_user_func_array( 'get_comments_number_text', $args ); |
| | 549 | } |
| | 550 | |
| | 551 | /** |
| | 552 | * Return the language string for the number of comments the current post has. |
| | 553 | * |
| | 554 | * @since 2.9 |
| | 555 | * @uses $id |
| | 556 | * @uses apply_filters() Calls the 'comments_number' hook on the output and number of comments respectively. |
| | 557 | * |
| | 558 | * @param string $zero Text for no comments |
| | 559 | * @param string $one Text for one comment |
| | 560 | * @param string $more Text for more than one comment |
| | 561 | */ |
| | 562 | function get_comments_number_text( $zero = false, $one = false, $more = false ) { |