raw
mp-wp_genesis           1 <?php
mp-wp_genesis 2 /**
mp-wp_genesis 3 * @package WordPress
mp-wp_genesis 4 * @subpackage Default_Theme
mp-wp_genesis 5 */
mp-wp_genesis 6
mp-wp_genesis 7 // Do not delete these lines
mp-wp_genesis 8 if (!empty($_SERVER['SCRIPT_FILENAME']) && 'comments.php' == basename($_SERVER['SCRIPT_FILENAME']))
mp-wp_genesis 9 die ('Please do not load this page directly. Thanks!');
mp-wp_genesis 10
mp-wp_genesis 11 if ( post_password_required() ) { ?>
mp-wp_genesis 12 <p class="nocomments">This post is password protected. Enter the password to view comments.</p>
mp-wp_genesis 13 <?php
mp-wp_genesis 14 return;
mp-wp_genesis 15 }
mp-wp_genesis 16 ?>
mp-wp_genesis 17
mp-wp_genesis 18 <!-- You can start editing here. -->
mp-wp_genesis 19
mp-wp_genesis 20 <?php if ( have_comments() ) : ?>
mp-wp_genesis 21 <h3 id="comments"><?php comments_number('No Responses', 'One Response', '% Responses' );?> to &#8220;<?php the_title(); ?>&#8221;</h3>
mp-wp_genesis 22
mp-wp_genesis 23 <div class="navigation">
mp-wp_genesis 24 <div class="alignleft"><?php previous_comments_link() ?></div>
mp-wp_genesis 25 <div class="alignright"><?php next_comments_link() ?></div>
mp-wp_genesis 26 </div>
mp-wp_genesis 27
mp-wp_genesis 28 <ol class="commentlist">
mp-wp_comments_fi... 29 <?php wp_list_comments('type=comment'); ?>
mp-wp_comments_fi... 30 <?php wp_list_comments('type=pings'); ?>
mp-wp_genesis 31 </ol>
mp-wp_genesis 32
mp-wp_genesis 33 <div class="navigation">
mp-wp_genesis 34 <div class="alignleft"><?php previous_comments_link() ?></div>
mp-wp_genesis 35 <div class="alignright"><?php next_comments_link() ?></div>
mp-wp_genesis 36 </div>
mp-wp_genesis 37 <?php else : // this is displayed if there are no comments so far ?>
mp-wp_genesis 38
mp-wp_genesis 39 <?php if ('open' == $post->comment_status) : ?>
mp-wp_genesis 40 <!-- If comments are open, but there are no comments. -->
mp-wp_genesis 41
mp-wp_genesis 42 <?php else : // comments are closed ?>
mp-wp_genesis 43 <!-- If comments are closed. -->
mp-wp_genesis 44 <p class="nocomments">Comments are closed.</p>
mp-wp_genesis 45
mp-wp_genesis 46 <?php endif; ?>
mp-wp_genesis 47 <?php endif; ?>
mp-wp_genesis 48
mp-wp_genesis 49
mp-wp_genesis 50 <?php if ('open' == $post->comment_status) : ?>
mp-wp_genesis 51
mp-wp_genesis 52 <div id="respond">
mp-wp_genesis 53
mp-wp_genesis 54 <h3><?php comment_form_title( 'Leave a Reply', 'Leave a Reply to %s' ); ?></h3>
mp-wp_genesis 55
mp-wp_genesis 56 <div class="cancel-comment-reply">
mp-wp_genesis 57 <small><?php cancel_comment_reply_link(); ?></small>
mp-wp_genesis 58 </div>
mp-wp_genesis 59
mp-wp_genesis 60 <?php if ( get_option('comment_registration') && !$user_ID ) : ?>
mp-wp_genesis 61 <p>You must be <a href="<?php echo get_option('siteurl'); ?>/wp-login.php?redirect_to=<?php echo urlencode(get_permalink()); ?>">logged in</a> to post a comment.</p>
mp-wp_genesis 62 <?php else : ?>
mp-wp_genesis 63
mp-wp_genesis 64 <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform">
mp-wp_genesis 65
mp-wp_genesis 66 <?php if ( $user_ID ) : ?>
mp-wp_genesis 67
mp-wp_genesis 68 <p>Logged in as <a href="<?php echo get_option('siteurl'); ?>/wp-admin/profile.php"><?php echo $user_identity; ?></a>. <a href="<?php echo wp_logout_url(get_permalink()); ?>" title="Log out of this account">Log out &raquo;</a></p>
mp-wp_genesis 69
mp-wp_genesis 70 <?php else : ?>
mp-wp_genesis 71
mp-wp_genesis 72 <?php $suffix = substr(md5(date('Y-m-d').$_SERVER['REMOTE_ADDR']).$_SERVER['HTTP_USER_AGENT'],6,7); ?>
mp-wp_genesis 73 <p><input type="text" name="author<?php echo $suffix;?>" id="author" value="<?php echo $comment_author; ?>" size="22" tabindex="1" <?php if ($req) echo "aria-required='true'"; ?> />
mp-wp_genesis 74 <label for="author"><small>Name <?php if ($req) echo "(required)"; ?></small></label></p>
mp-wp_genesis 75
mp-wp_genesis 76 <p><input type="text" name="email<?php echo $suffix;?>" id="email" value="<?php echo $comment_author_email; ?>" size="22" tabindex="2" <?php if ($req) echo "aria-required='true'"; ?> />
mp-wp_genesis 77 <label for="email"><small>Mail (will not be published) <?php if ($req) echo "(required)"; ?></small></label></p>
mp-wp_genesis 78
mp-wp_genesis 79 <p><input type="text" name="url<?php echo $suffix;?>" id="url" value="<?php echo $comment_author_url; ?>" size="22" tabindex="3" />
mp-wp_genesis 80 <label for="url"><small>Website</small></label></p>
mp-wp_genesis 81
mp-wp_genesis 82
mp-wp_genesis 83 <?php endif; ?>
mp-wp_genesis 84
mp-wp_genesis 85 <!--<p><small><strong>XHTML:</strong> You can use these tags: <code><?php echo allowed_tags(); ?></code></small></p>-->
mp-wp_genesis 86
mp-wp_genesis 87 <p><textarea name="comment" id="comment" cols="100%" rows="10" tabindex="4"></textarea></p>
mp-wp_genesis 88
mp-wp_genesis 89 <p><input name="submit" type="submit" id="submit" tabindex="5" value="Submit Comment" />
mp-wp_genesis 90 <input type="hidden" name="comment_post_time" value="<?php echo time(),"-",$_SERVER['REMOTE_ADDR']; ?>" />
mp-wp_genesis 91 <?php comment_id_fields(); ?>
mp-wp_genesis 92 </p>
mp-wp_genesis 93 <?php do_action('comment_form', $post->ID); ?>
mp-wp_genesis 94
mp-wp_genesis 95 </form>
mp-wp_genesis 96
mp-wp_genesis 97 <?php endif; // If registration required and not logged in ?>
mp-wp_genesis 98 </div>
mp-wp_genesis 99
mp-wp_genesis 100 <?php endif; // if you delete this the sky will fall on your head ?>