remove unnecessary comparison

This commit is contained in:
Sean Davis 2014-10-14 19:57:47 -05:00
parent b9ebebb28b
commit 5ab860c48b
1 changed files with 2 additions and 2 deletions

View File

@ -18,7 +18,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;
?>