web/wp-content/themes/WNN-WP/comments.php
author ymh <ymh.work@gmail.com>
Mon, 22 Mar 2010 16:36:28 +0100
changeset 5 ac511f1ccc8e
parent 1 0d28b7c10758
permissions -rw-r--r--
add hgignore
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
0d28b7c10758 First commit
ymh
parents:
diff changeset
     1
<?php // Do not delete these lines
0d28b7c10758 First commit
ymh
parents:
diff changeset
     2
if ('comments.php' == basename($_SERVER['SCRIPT_FILENAME'])) die ('Please do not load this page directly. Thanks!');
0d28b7c10758 First commit
ymh
parents:
diff changeset
     3
if (!empty($post->post_password)) { // if there's a password
0d28b7c10758 First commit
ymh
parents:
diff changeset
     4
	if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
0d28b7c10758 First commit
ymh
parents:
diff changeset
     5
?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
     6
0d28b7c10758 First commit
ymh
parents:
diff changeset
     7
<h2><?php _e('Password Protected'); ?></h2>
0d28b7c10758 First commit
ymh
parents:
diff changeset
     8
<p><?php _e('Enter the password to view comments.'); ?></p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
     9
0d28b7c10758 First commit
ymh
parents:
diff changeset
    10
<?php return;
0d28b7c10758 First commit
ymh
parents:
diff changeset
    11
	}
0d28b7c10758 First commit
ymh
parents:
diff changeset
    12
}
0d28b7c10758 First commit
ymh
parents:
diff changeset
    13
0d28b7c10758 First commit
ymh
parents:
diff changeset
    14
	/* This variable is for alternating comment background */
0d28b7c10758 First commit
ymh
parents:
diff changeset
    15
0d28b7c10758 First commit
ymh
parents:
diff changeset
    16
$oddcomment = 'alt';
0d28b7c10758 First commit
ymh
parents:
diff changeset
    17
0d28b7c10758 First commit
ymh
parents:
diff changeset
    18
?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    19
0d28b7c10758 First commit
ymh
parents:
diff changeset
    20
<!-- You can start editing here. -->
0d28b7c10758 First commit
ymh
parents:
diff changeset
    21
0d28b7c10758 First commit
ymh
parents:
diff changeset
    22
<?php if ($comments) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    23
	<h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> to &#8220;<?php the_title(); ?>&#8221;</h3>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    24
0d28b7c10758 First commit
ymh
parents:
diff changeset
    25
<ol class="commentlist">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    26
<?php foreach ($comments as $comment) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    27
0d28b7c10758 First commit
ymh
parents:
diff changeset
    28
	<li class="<?php echo $oddcomment; ?>" id="comment-<?php comment_ID() ?>">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    29
0d28b7c10758 First commit
ymh
parents:
diff changeset
    30
<div class="commentmetadata">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    31
<strong><?php comment_author_link() ?></strong>, <?php _e('on'); ?> <a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('F jS, Y') ?> <?php _e('at');?> <?php comment_time() ?></a> <?php _e('Said&#58;'); ?> <?php edit_comment_link('Edit Comment','',''); ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    32
 		<?php if ($comment->comment_approved == '0') : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    33
		<em><?php _e('Your comment is awaiting moderation.'); ?></em>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    34
 		<?php endif; ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    35
</div>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    36
0d28b7c10758 First commit
ymh
parents:
diff changeset
    37
<?php comment_text() ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    38
	</li>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    39
0d28b7c10758 First commit
ymh
parents:
diff changeset
    40
<?php /* Changes every other comment to a different class */
0d28b7c10758 First commit
ymh
parents:
diff changeset
    41
	if ('alt' == $oddcomment) $oddcomment = '';
0d28b7c10758 First commit
ymh
parents:
diff changeset
    42
	else $oddcomment = 'alt';
0d28b7c10758 First commit
ymh
parents:
diff changeset
    43
?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    44
0d28b7c10758 First commit
ymh
parents:
diff changeset
    45
<?php endforeach; /* end for each comment */ ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    46
	</ol>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    47
0d28b7c10758 First commit
ymh
parents:
diff changeset
    48
<?php else : // this is displayed if there are no comments so far ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    49
0d28b7c10758 First commit
ymh
parents:
diff changeset
    50
<?php if ('open' == $post->comment_status) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    51
	<!-- If comments are open, but there are no comments. -->
0d28b7c10758 First commit
ymh
parents:
diff changeset
    52
	<?php else : // comments are closed ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    53
0d28b7c10758 First commit
ymh
parents:
diff changeset
    54
	<!-- If comments are closed. -->
0d28b7c10758 First commit
ymh
parents:
diff changeset
    55
<p class="nocomments">Comments are closed.</p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    56
0d28b7c10758 First commit
ymh
parents:
diff changeset
    57
	<?php endif; ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    58
<?php endif; ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    59
0d28b7c10758 First commit
ymh
parents:
diff changeset
    60
0d28b7c10758 First commit
ymh
parents:
diff changeset
    61
<?php if ('open' == $post->comment_status) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    62
0d28b7c10758 First commit
ymh
parents:
diff changeset
    63
		<h3 id="respond">Leave a Reply</h3>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    64
0d28b7c10758 First commit
ymh
parents:
diff changeset
    65
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    66
<p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php the_permalink(); ?>">logged in</a> to post a comment.</p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    67
0d28b7c10758 First commit
ymh
parents:
diff changeset
    68
<?php else : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    69
0d28b7c10758 First commit
ymh
parents:
diff changeset
    70
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    71
<?php if ( $user_ID ) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    72
0d28b7c10758 First commit
ymh
parents:
diff changeset
    73
<p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?action=logout" title="Log out of this account">Logout &raquo;</a></p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    74
0d28b7c10758 First commit
ymh
parents:
diff changeset
    75
<?php else : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    76
0d28b7c10758 First commit
ymh
parents:
diff changeset
    77
<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="40" tabindex="1" />
0d28b7c10758 First commit
ymh
parents:
diff changeset
    78
<label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label></p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    79
0d28b7c10758 First commit
ymh
parents:
diff changeset
    80
<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="40" tabindex="2" />
0d28b7c10758 First commit
ymh
parents:
diff changeset
    81
<label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    82
0d28b7c10758 First commit
ymh
parents:
diff changeset
    83
<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="40" tabindex="3" />
0d28b7c10758 First commit
ymh
parents:
diff changeset
    84
<label for="url"><small>Website</small></label></p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    85
0d28b7c10758 First commit
ymh
parents:
diff changeset
    86
<?php endif; ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    87
0d28b7c10758 First commit
ymh
parents:
diff changeset
    88
<!--<p><small><strong>XHTML:</strong> <?php _e('You can use these tags&#58;'); ?> <?php echo allowed_tags(); ?></small></p>-->
0d28b7c10758 First commit
ymh
parents:
diff changeset
    89
0d28b7c10758 First commit
ymh
parents:
diff changeset
    90
<p><textarea name="comment" id="comment" cols="60" rows="10" tabindex="4"></textarea></p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    91
0d28b7c10758 First commit
ymh
parents:
diff changeset
    92
<p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
0d28b7c10758 First commit
ymh
parents:
diff changeset
    93
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
0d28b7c10758 First commit
ymh
parents:
diff changeset
    94
</p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    95
0d28b7c10758 First commit
ymh
parents:
diff changeset
    96
<?php do_action('comment_form', $post->ID); ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    97
0d28b7c10758 First commit
ymh
parents:
diff changeset
    98
</form>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    99
0d28b7c10758 First commit
ymh
parents:
diff changeset
   100
<?php endif; // If registration required and not logged in ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
   101
0d28b7c10758 First commit
ymh
parents:
diff changeset
   102
<?php endif; // if you delete this the sky will fall on your head ?>