remove unnecessary comparison

This commit is contained in:
Sean Davis 2014-10-14 19:57:29 -05:00
parent 348886e168
commit b9ebebb28b
1 changed files with 1 additions and 1 deletions

View File

@ -21,7 +21,7 @@ get_header(); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() ) :
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?>