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;
?>
@ -29,4 +29,4 @@ get_header(); ?>
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
<?php get_footer(); ?>