19 lines
506 B
PHP
19 lines
506 B
PHP
<?php if ( post_password_required() ) : ?>
|
|
<p><?php _e( 'This post is password protected. Enter the password to view any comments.','hangar'); ?></p>
|
|
<?php
|
|
/* Stop the rest of comments.php from being processed,
|
|
* but don't kill the script entirely -- we still have
|
|
* to fully load the template.
|
|
*/
|
|
return;
|
|
endif;
|
|
?>
|
|
|
|
<?php
|
|
// You can start editing here -- including this comment!
|
|
//echo '<div id="comments-content" class="clearfix">';
|
|
//echo '</div>';
|
|
?>
|
|
|
|
<!--end Comments Content-->
|