web/wp-content/themes/vivee_portfolio/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 (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
0d28b7c10758 First commit
ymh
parents:
diff changeset
     3
		die ('Please do not load this page directly. Thanks!');
0d28b7c10758 First commit
ymh
parents:
diff changeset
     4
0d28b7c10758 First commit
ymh
parents:
diff changeset
     5
	if (!empty($post->post_password)) { // if there's a password
0d28b7c10758 First commit
ymh
parents:
diff changeset
     6
		if ($_COOKIE['wp-postpass_' . COOKIEHASH] != $post->post_password) {  // and it doesn't match the cookie
0d28b7c10758 First commit
ymh
parents:
diff changeset
     7
			?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
     8
0d28b7c10758 First commit
ymh
parents:
diff changeset
     9
			<p class="nocomments">Wpis jest chroniony hasłem. Podaj je, aby zobaczyć komentarze.</p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    10
0d28b7c10758 First commit
ymh
parents:
diff changeset
    11
			<?php
0d28b7c10758 First commit
ymh
parents:
diff changeset
    12
			return;
0d28b7c10758 First commit
ymh
parents:
diff changeset
    13
		}
0d28b7c10758 First commit
ymh
parents:
diff changeset
    14
	}
0d28b7c10758 First commit
ymh
parents:
diff changeset
    15
0d28b7c10758 First commit
ymh
parents:
diff changeset
    16
	/* This variable is for alternating comment background */
0d28b7c10758 First commit
ymh
parents:
diff changeset
    17
	$oddcomment = 'class="alt" ';
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
<div class="komentarze">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    22
<?php if ($comments) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    23
	<h3 id="comments">Komentarze do wpisu:</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
0d28b7c10758 First commit
ymh
parents:
diff changeset
    27
	<?php foreach ($comments as $comment) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    28
0d28b7c10758 First commit
ymh
parents:
diff changeset
    29
		<li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    30
			<div class="autor_dane">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    31
				<?php echo get_avatar( $comment, 32 ); ?><br/>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    32
                <cite><?php comment_author_link() ?></cite>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    33
                <?php if ($comment->comment_approved == '0') : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    34
                <?php endif; ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    35
                <small class="commentmetadata">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    36
                	<a href="#comment-<?php comment_ID() ?>" title=""><?php comment_date('d.m.Y') ?></a>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    37
                </small>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    38
            </div>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    39
			<div class="autor_text">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    40
			<?php comment_text() ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    41
            </div>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    42
            <div class="end"></div>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    43
		</li>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    44
0d28b7c10758 First commit
ymh
parents:
diff changeset
    45
	<?php
0d28b7c10758 First commit
ymh
parents:
diff changeset
    46
		/* Changes every other comment to a different class */
0d28b7c10758 First commit
ymh
parents:
diff changeset
    47
		$oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : '';
0d28b7c10758 First commit
ymh
parents:
diff changeset
    48
	?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    49
0d28b7c10758 First commit
ymh
parents:
diff changeset
    50
	<?php endforeach; /* end for each comment */ ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    51
0d28b7c10758 First commit
ymh
parents:
diff changeset
    52
	</ol>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    53
0d28b7c10758 First commit
ymh
parents:
diff changeset
    54
 <?php else : // this is displayed if there are no comments so far ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    55
0d28b7c10758 First commit
ymh
parents:
diff changeset
    56
	<?php if ('open' == $post->comment_status) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    57
		<!-- If comments are open, but there are no comments. -->
0d28b7c10758 First commit
ymh
parents:
diff changeset
    58
0d28b7c10758 First commit
ymh
parents:
diff changeset
    59
	 <?php else : // comments are closed ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    60
		<!-- If comments are closed. -->
0d28b7c10758 First commit
ymh
parents:
diff changeset
    61
		<p class="nocomments">Komentarze  wyłączone</p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    62
0d28b7c10758 First commit
ymh
parents:
diff changeset
    63
	<?php endif; ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    64
<?php endif; ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    65
0d28b7c10758 First commit
ymh
parents:
diff changeset
    66
0d28b7c10758 First commit
ymh
parents:
diff changeset
    67
<?php if ('open' == $post->comment_status) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    68
0d28b7c10758 First commit
ymh
parents:
diff changeset
    69
<h3 id="respond">Dodaj komentarz</h3>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    70
0d28b7c10758 First commit
ymh
parents:
diff changeset
    71
<?php if ( get_option('comment_registration') && !$user_ID ) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    72
<p>Musisz być <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">zalogowany</a>, aby dodać komentarz</p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    73
<?php else : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    74
0d28b7c10758 First commit
ymh
parents:
diff changeset
    75
<form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
0d28b7c10758 First commit
ymh
parents:
diff changeset
    76
0d28b7c10758 First commit
ymh
parents:
diff changeset
    77
<?php if ( $user_ID ) : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    78
0d28b7c10758 First commit
ymh
parents:
diff changeset
    79
<p style="margin:0 0 7px 0;">Jesteś zalogowany jako <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">Wyloguj się &raquo;</a></p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    80
0d28b7c10758 First commit
ymh
parents:
diff changeset
    81
<?php else : ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    82
0d28b7c10758 First commit
ymh
parents:
diff changeset
    83
<p><input type="text" name="author" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
0d28b7c10758 First commit
ymh
parents:
diff changeset
    84
<label for="author"><small><strong>Imię</strong> <?php if ($req) echo "(wymagane)"; ?></small></label></p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    85
0d28b7c10758 First commit
ymh
parents:
diff changeset
    86
<p><input type="text" name="email" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
0d28b7c10758 First commit
ymh
parents:
diff changeset
    87
<label for="email"><small><strong>E-mail</strong> (nie będzie publikowany) <?php if ($req) echo "(wymagany)"; ?></small></label></p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    88
0d28b7c10758 First commit
ymh
parents:
diff changeset
    89
<p><input type="text" name="url" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
0d28b7c10758 First commit
ymh
parents:
diff changeset
    90
<label for="url"><small><strong>Strona www</strong></small></label></p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    91
0d28b7c10758 First commit
ymh
parents:
diff changeset
    92
<?php endif; ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    93
0d28b7c10758 First commit
ymh
parents:
diff changeset
    94
<!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
0d28b7c10758 First commit
ymh
parents:
diff changeset
    95
0d28b7c10758 First commit
ymh
parents:
diff changeset
    96
<p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    97
0d28b7c10758 First commit
ymh
parents:
diff changeset
    98
<p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
    99
<input name="submit" type="submit" id="submit" tabindex="5" value="wyślij" class="ok" />
0d28b7c10758 First commit
ymh
parents:
diff changeset
   100
<input type="hidden" name="comment_post_ID" value="<?php echo $id; ?>" />
0d28b7c10758 First commit
ymh
parents:
diff changeset
   101
</p>
0d28b7c10758 First commit
ymh
parents:
diff changeset
   102
<?php do_action('comment_form', $post->ID); ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
   103
0d28b7c10758 First commit
ymh
parents:
diff changeset
   104
</form>
0d28b7c10758 First commit
ymh
parents:
diff changeset
   105
0d28b7c10758 First commit
ymh
parents:
diff changeset
   106
<?php endif; // If registration required and not logged in ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
   107
0d28b7c10758 First commit
ymh
parents:
diff changeset
   108
<?php endif; // if you delete this the sky will fall on your head ?>
0d28b7c10758 First commit
ymh
parents:
diff changeset
   109
</div>