本文整理汇总了PHP中comment_text_rss函数的典型用法代码示例。如果您正苦于以下问题:PHP comment_text_rss函数的具体用法?PHP comment_text_rss怎么用?PHP comment_text_rss使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。
在下文中一共展示了comment_text_rss函数的6个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: get_post
$comment_post = get_post($comment->comment_post_ID);
get_post_custom($comment_post->ID);
?>
<item>
<title><?php
if ( !is_singular() ) {
$title = get_the_title($comment_post->ID);
$title = apply_filters('the_title_rss', $title);
printf(ent2ncr(__('Comment on %1$s by %2$s')), $title, get_comment_author_rss());
} else {
printf(ent2ncr(__('By: %s')), get_comment_author_rss());
}
?></title>
<link><?php comment_link() ?></link>
<dc:creator><?php echo get_comment_author_rss() ?></dc:creator>
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_comment_time('Y-m-d H:i:s', true, false), false); ?></pubDate>
<guid isPermaLink="false"><?php comment_guid() ?></guid>
<?php if ( post_password_required($comment_post) ) : ?>
<description><?php echo ent2ncr(__('Protected Comments: Please enter your password to view comments.')); ?></description>
<content:encoded><![CDATA[<?php echo get_the_password_form() ?>]]></content:encoded>
<?php else : // post pass ?>
<description><?php comment_text_rss() ?></description>
<content:encoded><![CDATA[<?php comment_text() ?>]]></content:encoded>
<?php endif; // post pass
do_action('commentrss2_item', $comment->comment_ID, $comment_post->ID);
?>
</item>
<?php endwhile; endif; ?>
</channel>
</rss>
示例2: ent2ncr
if (post_password_required($comment_post)) {
?>
<description><?php
echo ent2ncr(__('Protected Comments: Please enter your password to view comments.'));
?>
</description>
<content:encoded><![CDATA[<?php
echo get_the_password_form();
?>
]]></content:encoded>
<?php
} else {
// post pass
?>
<description><?php
comment_text_rss();
?>
</description>
<content:encoded><![CDATA[<?php
comment_text();
?>
]]></content:encoded>
<?php
}
// post pass
do_action('commentrss2_item', $comment->comment_ID, $comment_post->ID);
?>
</item>
<?php
}
}
示例3: apply_filters
/** This filter is documented in wp-includes/feed.php */
$title = apply_filters( 'the_title_rss', $title );
printf(ent2ncr(__('Comment on %1$s by %2$s')), $title, get_comment_author_rss());
} else {
printf(ent2ncr(__('By: %s')), get_comment_author_rss());
}
?></title>
<link><?php comment_link() ?></link>
<dc:creator><![CDATA[<?php echo get_comment_author_rss() ?>]]></dc:creator>
<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_comment_time('Y-m-d H:i:s', true, false), false); ?></pubDate>
<guid isPermaLink="false"><?php comment_guid() ?></guid>
<?php if ( post_password_required($comment_post) ) : ?>
<description><?php echo ent2ncr(__('Protected Comments: Please enter your password to view comments.')); ?></description>
<content:encoded><![CDATA[<?php echo get_the_password_form() ?>]]></content:encoded>
<?php else : // post pass ?>
<description><![CDATA[<?php comment_text_rss() ?>]]></description>
<content:encoded><![CDATA[<?php comment_text() ?>]]></content:encoded>
<?php endif; // post pass
/**
* Fires at the end of each RSS2 comment feed item.
*
* @since 2.1.0
*
* @param int $comment->comment_ID The ID of the comment being displayed.
* @param int $comment_post->ID The ID of the post the comment is connected to.
*/
do_action( 'commentrss2_item', $comment->comment_ID, $comment_post->ID );
?>
</item>
<?php endwhile; endif; ?>
</channel>
示例4: get_the_password_form
<?php
if (!empty($GLOBALS['comment']->post_password) && $_COOKIE['wp-postpass'] != $GLOBALS['comment']->post_password) {
?>
<description>Protected Comments: Please enter your password to view comments.</description>
<content:encoded><![CDATA[<?php
echo get_the_password_form();
?>
]]></content:encoded>
<?php
} else {
?>
<description><?php
comment_text_rss();
?>
</description>
<content:encoded><![CDATA[<?php
comment_text_rss(true);
?>
]]></content:encoded>
<?php
}
?>
</item>
<?php
}
}
}
}
?>
</channel>
</rss>
示例5: tmk_comments
function tmk_comments($comment, $args, $depth)
{
$GLOBALS['comment'] = $comment;
?>
<li class="comment" id="comment-<?php
echo comment_ID();
?>
" comment-id="<?php
echo comment_ID();
?>
">
<article>
<div class="gravatar">
<?php
echo get_avatar($comment, $size = '60', TMM_THEME_URI . '/images/gravatar.jpg');
?>
</div>
<div class="comment-body">
<div class="comment-meta clearfix">
<div class="comment-author"><?php
echo get_comment_author_link();
?>
</div>
<div class="comment-date"><?php
comment_date();
?>
- </div>
<?php
echo get_comment_reply_link(array_merge(array('reply_text' => __('Reply', 'almera')), array('depth' => $depth, 'max_depth' => $args['max_depth'])));
?>
</div><!--/ .comment-meta -->
<p><?php
comment_text_rss();
?>
</p>
</div><!--/ .comment-body-->
</article>
</li>
<?php
}
示例6: get_the_password_form
<?php
if (!empty($GLOBALS['comment']->post_password) && $_COOKIE['wp-postpass'] != $GLOBALS['comment']->post_password) {
?>
<description>Protected Comments: Please enter your password to view comments.</description>
<content:encoded><![CDATA[<?php
echo get_the_password_form();
?>
]]></content:encoded>
<?php
} else {
?>
<description><?php
comment_text_rss();
?>
</description>
<content:encoded><![CDATA[<?php
comment_text_rss(true, false);
?>
]]></content:encoded>
<?php
}
?>
</item>
<?php
}
}
}
}
?>
</channel>
</rss>