forked from mirror/_s
remove unnecessary comparison
This commit is contained in:
parent
348886e168
commit
b9ebebb28b
2
page.php
2
page.php
|
@ -21,7 +21,7 @@ get_header(); ?>
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
// If comments are open or we have at least one comment, load up the comment template
|
// 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();
|
comments_template();
|
||||||
endif;
|
endif;
|
||||||
?>
|
?>
|
||||||
|
|
Reference in New Issue