Changeset 805
- Timestamp:
- 01/28/2004 08:40:58 AM (21 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-comments.php
r787 r805 20 20 <!-- You can start editing here. --> 21 21 22 <h2 id="comments">Comments</h2> 23 24 <p><?php comments_rss_link('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.'); ?></p> 25 22 <h2 id="comments"><?php comments_number('Comments'); ?> 23 <?php if ('open' == $post->comment_status) { ?> 24 <a href="#postcomment" title="Leave a comment">»</a> 25 <?php } ?> 26 </h2> 26 27 <?php if ('open' == $post->ping_status) { ?> 27 28 <p>The <acronym title="Uniform Resource Identifier">URI</acronym> to TrackBack this entry is: <em><?php trackback_url() ?></em></p> … … 42 43 <p>No comments yet.</p> 43 44 <?php } ?> 44 45 <h2 >Leave a Comment</h2>45 <p><?php comments_rss_link('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.'); ?></p> 46 <h2 id="postcomment">Leave a Comment</h2> 46 47 <?php if ('open' == $post->comment_status) { ?> 47 48 <p>Line and paragraph breaks automatic, website trumps email, <acronym title="Hypertext Markup Language">HTML</acronym> allowed: <code><?php echo allowed_tags(); ?></code></p> … … 86 87 </form> 87 88 <?php } else { // comments are closed ?> 88 <p>Sorry, comments areclosed at this time.</p>89 <p>Sorry, the comment form is closed at this time.</p> 89 90 <?php } ?> 90 91 -
trunk/wp-includes/template-functions-comment.php
r801 r805 33 33 global $id, $wpcommentspopupfile, $wpcommentsjavascript, $post, $wpdb, $tablecomments, $HTTP_COOKIE_VARS, $cookiehash; 34 34 global $querystring_start, $querystring_equal, $querystring_separator, $siteurl; 35 global $comment_count_cache; 35 global $comment_count_cache, $single; 36 if (!$single) { 36 37 if ('' == $comment_count_cache["$id"]) { 37 38 $number = $wpdb->get_var("SELECT COUNT(comment_ID) FROM $tablecomments WHERE comment_post_ID = $id AND comment_approved = '1';"); … … 66 67 echo '</a>'; 67 68 } 69 } 68 70 } 69 71 -
trunk/wp-layout.css
r798 r805 55 55 h2 { 56 56 border-bottom: 1px dotted #ccc; 57 font: 80% "Times New Roman", Times, serif;57 font: 95% "Times New Roman", Times, serif; 58 58 letter-spacing: 0.2em; 59 59 margin: 15px 0 2px 0;
Note: See TracChangeset
for help on using the changeset viewer.