mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-12 13:44:21 +01:00
git-svn-id: http://svn.automattic.com/wordpress/trunk@2167 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
c4649b9979
commit
e2e1028be1
@ -47,9 +47,9 @@ if ($posts) { foreach ($posts as $post) { start_wp();
|
||||
?>
|
||||
<item>
|
||||
<title>by: <?php comment_author_rss() ?></title>
|
||||
<link><?php comment_link_rss() ?></link>
|
||||
<link><?php comment_link() ?></link>
|
||||
<pubDate><?php comment_time('r'); ?></pubDate>
|
||||
<guid isPermaLink="false"><?php comment_ID(); echo ":".$comment->comment_post_ID; ?>@<?php bloginfo_rss("url") ?></guid>
|
||||
<guid><?php comment_link() ?></guid>
|
||||
<?php
|
||||
if (!empty($comment->post_password) && $_COOKIE['wp-postpass'] != $comment->post_password) {
|
||||
?>
|
||||
|
@ -64,6 +64,11 @@ function get_comments_link() {
|
||||
return get_permalink() . '#comments';
|
||||
}
|
||||
|
||||
function get_comment_link() {
|
||||
global $comment;
|
||||
return get_permalink( $comment->comment_post_ID ) . '#comment-' . $comment->comment_ID;
|
||||
}
|
||||
|
||||
function comments_link( $file = '', $echo = true ) {
|
||||
echo get_comments_link();
|
||||
}
|
||||
|
@ -54,8 +54,8 @@ function permalink_single_rss($file = '') {
|
||||
echo get_permalink();
|
||||
}
|
||||
|
||||
function comment_link_rss() {
|
||||
echo get_comments_link();
|
||||
function comment_link() {
|
||||
echo get_comment_link();
|
||||
}
|
||||
|
||||
function comment_author_rss() {
|
||||
|
Loading…
Reference in New Issue
Block a user