Changeset 11067 for trunk/wp-content/themes/default/comments.php
- Timestamp:
- 04/23/2009 07:11:31 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-content/themes/default/comments.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-content/themes/default/comments.php
r10978 r11067 57 57 </div> 58 58 59 <?php if ( get_option('comment_registration') && ! $user_ID) : ?>59 <?php if ( get_option('comment_registration') && !is_user_logged_in() ) : ?> 60 60 <p>You must be <a href="<?php echo wp_login_url( get_permalink() ); ?>">logged in</a> to post a comment.</p> 61 61 <?php else : ?> … … 63 63 <form action="<?php echo get_option('siteurl'); ?>/wp-comments-post.php" method="post" id="commentform"> 64 64 65 <?php if ( $user_ID) : ?>65 <?php if ( is_user_logged_in() ) : ?> 66 66 67 67 <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 »</a></p>
Note: See TracChangeset
for help on using the changeset viewer.