W3Counter

Show comments link only if there are existing comments

September 27, 2010

The following snippet will disable the default Thesis comments link, if the post doesn’t have any comments yet.

function thesify_disable_comments_link( $link )
{
    if( get_comments_number() == 0 )
        return '';
    return $link;
}
add_filter( 'thesis_comments_link', 'thesify_disable_comments_link', 11 );

Requested by @Tastelikecrazy

Leave a Comment

Previous post:

Next post: