当前位置: 首页>>代码示例>>PHP>>正文


PHP get_comment_author_rss函数代码示例

本文整理汇总了PHP中get_comment_author_rss函数的典型用法代码示例。如果您正苦于以下问题:PHP get_comment_author_rss函数的具体用法?PHP get_comment_author_rss怎么用?PHP get_comment_author_rss使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了get_comment_author_rss函数的7个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: get_post

if ( have_comments() ) : while ( have_comments() ) : the_comment();
	$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>
开发者ID:realfluid,项目名称:umbaugh,代码行数:31,代码来源:feed-rss2-comments.php

示例2: while

<?php 
if (have_comments()) {
    while (have_comments()) {
        the_comment();
        $comment_post = get_post($comment->comment_post_ID);
        get_post_custom($comment_post->ID);
        ?>
	<entry>
		<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 rel="alternate" href="<?php 
        comment_link();
        ?>
" type="<?php 
        bloginfo_rss('html_type');
        ?>
" />

		<author>
			<name><?php 
        comment_author_rss();
        ?>
开发者ID:BGCX262,项目名称:zxhproject-svn-to-git,代码行数:30,代码来源:feed-atom-comments.php

示例3: get_the_title

		<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);
        ?>
</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.'));
开发者ID:BGCX262,项目名称:zxhproject-svn-to-git,代码行数:31,代码来源:feed-rss2-comments.php

示例4: comment_author_rss

/**
 * Display the current comment author in the feed.
 *
 * @since 1.0.0
 */
function comment_author_rss()
{
    echo get_comment_author_rss();
}
开发者ID:RA2WP,项目名称:RA2WP,代码行数:9,代码来源:feed.php

示例5: get_post

	if ( have_comments() ) : while ( have_comments() ) : the_comment();
		$comment_post = $GLOBALS['post'] = get_post( $comment->comment_post_ID );
	?>
	<item>
		<title><?php
			if ( !is_singular() ) {
				$title = get_the_title($comment_post->ID);
				/** 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.
开发者ID:ShankarVellal,项目名称:WordPress,代码行数:31,代码来源:feed-rss2-comments.php

示例6: while

<?php 
if (have_comments()) {
    while (have_comments()) {
        the_comment();
        $comment_post = get_post($comment->comment_post_ID);
        get_post_custom($comment_post->ID);
        ?>
	<entry>
		<title><?php 
        if (!is_singular()) {
            $title = get_the_title($comment_post->ID);
            $title = apply_filters('the_title_rss', $title);
            printf(__('Comment on %1$s by %2$s'), $title, get_comment_author_rss());
        } else {
            printf(__('By: %s'), get_comment_author_rss());
        }
        ?>
</title>
		<link rel="alternate" href="<?php 
        comment_link();
        ?>
" type="<?php 
        bloginfo_rss('html_type');
        ?>
" />

		<author>
			<name><?php 
        comment_author_rss();
        ?>
开发者ID:helmonaut,项目名称:owb-mirror,代码行数:30,代码来源:feed-atom-comments.php

示例7: 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', $title);
				$title = apply_filters('the_title_rss', $title);
				printf(__('Comment on %1$s by %2$s'), $title, get_comment_author_rss());
			} else {
				printf(__('By: %s'), get_comment_author_rss());
			}
		?></title>
		<link><?php comment_link() ?></link>
		<author><?php echo get_comment_author_rss() ?></author>
		<pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', get_comment_time('Y-m-d H:i:s', true), false); ?></pubDate>
		<guid><?php comment_link() ?></guid>
<?php if (!empty($comment_post->post_password) && $_COOKIE['wp-postpass'] != $comment_post->post_password) : ?>
		<description><?php _e('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>
开发者ID:staylor,项目名称:develop.svn.wordpress.org,代码行数:31,代码来源:feed-rss2-comments.php


注:本文中的get_comment_author_rss函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。