Exemplo n.º 1
0
	$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>
        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 
    }
}
				/** 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>
		<?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>
Exemplo n.º 5
0
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 
}
		<?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>