Display the Number of Comments on a Blog Post in EE and WP
ExpressionEngine1
| <a href="{comment_url_title_auto_path}#comments">{comment_total} {if comment_total == 1}Comment{if:else}Comments{/if}</a>
|
WordPress1
| <?php comments_popup_link('0 Comments', '1 Comment', '% Comments'); ?>
|