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


PHP comment_text_rss函数代码示例

本文整理汇总了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>
开发者ID:realfluid,项目名称:umbaugh,代码行数:30,代码来源:feed-rss2-comments.php

示例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 
    }
}
开发者ID:BGCX262,项目名称:zxhproject-svn-to-git,代码行数:31,代码来源:feed-rss2-comments.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>
开发者ID:ShankarVellal,项目名称:WordPress,代码行数:31,代码来源:feed-rss2-comments.php

示例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>
开发者ID:BackupTheBerlios,项目名称:nobunobuxoops-svn,代码行数:31,代码来源:wp-commentsrss2.php

示例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 
}
开发者ID:mattmcgiv,项目名称:etp-almera-theme,代码行数:44,代码来源:functions+copy.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>
开发者ID:BackupTheBerlios,项目名称:nobunobuxoops-svn,代码行数:31,代码来源:wp-commentsrss2.php


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