mirror of
https://github.com/WordPress/WordPress.git
synced 2024-12-23 09:37:42 +01:00
Comments link not shown if on comments page, link to comment form, number of comments in comment header, and slight font size tweak.
git-svn-id: http://svn.automattic.com/wordpress/trunk@805 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
e3bcbb488d
commit
a5c49531fd
@ -19,10 +19,11 @@
|
|||||||
|
|
||||||
<!-- You can start editing here. -->
|
<!-- You can start editing here. -->
|
||||||
|
|
||||||
<h2 id="comments">Comments</h2>
|
<h2 id="comments"><?php comments_number('Comments'); ?>
|
||||||
|
<?php if ('open' == $post->comment_status) { ?>
|
||||||
<p><?php comments_rss_link('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.'); ?></p>
|
<a href="#postcomment" title="Leave a comment">»</a>
|
||||||
|
<?php } ?>
|
||||||
|
</h2>
|
||||||
<?php if ('open' == $post->ping_status) { ?>
|
<?php if ('open' == $post->ping_status) { ?>
|
||||||
<p>The <acronym title="Uniform Resource Identifier">URI</acronym> to TrackBack this entry is: <em><?php trackback_url() ?></em></p>
|
<p>The <acronym title="Uniform Resource Identifier">URI</acronym> to TrackBack this entry is: <em><?php trackback_url() ?></em></p>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
@ -41,8 +42,8 @@
|
|||||||
<?php } else { // this is displayed if there are no comments so far ?>
|
<?php } else { // this is displayed if there are no comments so far ?>
|
||||||
<p>No comments yet.</p>
|
<p>No comments yet.</p>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
<p><?php comments_rss_link('<abbr title="Really Simple Syndication">RSS</abbr> feed for comments on this post.'); ?></p>
|
||||||
<h2>Leave a Comment</h2>
|
<h2 id="postcomment">Leave a Comment</h2>
|
||||||
<?php if ('open' == $post->comment_status) { ?>
|
<?php if ('open' == $post->comment_status) { ?>
|
||||||
<p>Line and paragraph breaks automatic, website trumps email, <acronym title="Hypertext Markup Language">HTML</acronym> allowed: <code><?php echo allowed_tags(); ?></code></p>
|
<p>Line and paragraph breaks automatic, website trumps email, <acronym title="Hypertext Markup Language">HTML</acronym> allowed: <code><?php echo allowed_tags(); ?></code></p>
|
||||||
|
|
||||||
@ -85,7 +86,7 @@ if ('none' != get_settings("comment_moderation")) {
|
|||||||
</p>
|
</p>
|
||||||
</form>
|
</form>
|
||||||
<?php } else { // comments are closed ?>
|
<?php } else { // comments are closed ?>
|
||||||
<p>Sorry, comments are closed at this time.</p>
|
<p>Sorry, the comment form is closed at this time.</p>
|
||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
<?php // if you delete this the sky will fall on your head
|
<?php // if you delete this the sky will fall on your head
|
||||||
|
@ -32,7 +32,8 @@ function comments_popup_script($width=400, $height=400, $file='wp-comments-popup
|
|||||||
function comments_popup_link($zero='No Comments', $one='1 Comment', $more='% Comments', $CSSclass='', $none='Comments Off') {
|
function comments_popup_link($zero='No Comments', $one='1 Comment', $more='% Comments', $CSSclass='', $none='Comments Off') {
|
||||||
global $id, $wpcommentspopupfile, $wpcommentsjavascript, $post, $wpdb, $tablecomments, $HTTP_COOKIE_VARS, $cookiehash;
|
global $id, $wpcommentspopupfile, $wpcommentsjavascript, $post, $wpdb, $tablecomments, $HTTP_COOKIE_VARS, $cookiehash;
|
||||||
global $querystring_start, $querystring_equal, $querystring_separator, $siteurl;
|
global $querystring_start, $querystring_equal, $querystring_separator, $siteurl;
|
||||||
global $comment_count_cache;
|
global $comment_count_cache, $single;
|
||||||
|
if (!$single) {
|
||||||
if ('' == $comment_count_cache["$id"]) {
|
if ('' == $comment_count_cache["$id"]) {
|
||||||
$number = $wpdb->get_var("SELECT COUNT(comment_ID) FROM $tablecomments WHERE comment_post_ID = $id AND comment_approved = '1';");
|
$number = $wpdb->get_var("SELECT COUNT(comment_ID) FROM $tablecomments WHERE comment_post_ID = $id AND comment_approved = '1';");
|
||||||
} else {
|
} else {
|
||||||
@ -65,6 +66,7 @@ function comments_popup_link($zero='No Comments', $one='1 Comment', $more='% Com
|
|||||||
comments_number($zero, $one, $more, $number);
|
comments_number($zero, $one, $more, $number);
|
||||||
echo '</a>';
|
echo '</a>';
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
function comment_ID() {
|
function comment_ID() {
|
||||||
|
@ -54,7 +54,7 @@ cite {
|
|||||||
|
|
||||||
h2 {
|
h2 {
|
||||||
border-bottom: 1px dotted #ccc;
|
border-bottom: 1px dotted #ccc;
|
||||||
font: 80% "Times New Roman", Times, serif;
|
font: 95% "Times New Roman", Times, serif;
|
||||||
letter-spacing: 0.2em;
|
letter-spacing: 0.2em;
|
||||||
margin: 15px 0 2px 0;
|
margin: 15px 0 2px 0;
|
||||||
padding-bottom: 2px;
|
padding-bottom: 2px;
|
||||||
|
Loading…
Reference in New Issue
Block a user