Hi guys,
Is there a way to check if a post/page has comments already ? I would like to include my javascript only on posts/pages who have comments already.
Thanks,
Hi guys,
Is there a way to check if a post/page has comments already ? I would like to include my javascript only on posts/pages who have comments already.
Thanks,
Yeah I'm wondering that too. Does anyone know how to do this?
If you're in the Loop, you can use use the built-in function, get_comments_number()
so,
<?php
if (get_comments_number()==0) {
// post has no comments
} else {
// post has comments
}
?>thanks =)
This topic has been closed to new replies.