mirror of
https://github.com/WordPress/WordPress.git
synced 2025-02-20 19:56:49 +01:00
This resolves 80+ WPCS warnings in core:
{{{
Variable "$comment_ID" is not in valid snake_case format
}}}
While matching the database field of the same name, the `$comment_ID` variable did not follow the WordPress coding standards, and is now renamed to address that.
This affects:
* Function parameters in:
* `get_comment_author()`
* `comment_author()`
* `get_comment_author_email()`
* `comment_author_email()`
* `get_comment_author_link()`
* `comment_author_link()`
* `get_comment_author_IP()`
* `comment_author_IP()`
* `get_comment_author_rl()`
* `comment_author_url()`
* `get_comment_date()`
* `comment_date()`
* `get_comment_excerpt()`
* `comment_excerpt()`
* `get_comment_text()`
* `comment_text()`
* `get_comment_time()`
* `comment_time()`
* `get_comment_type()`
* `get_page_of_comment()`
* `wp_new_comment_notify_moderator()`
* `wp_new_comment_notify_postauthor()`
* `get_commentdata()`
* Internal variables in:
* `get_comment_ID()`
* `wp_new_comment()`
* `wp_xmlrpc_server::wp_deleteComment()`
* `wp_xmlrpc_server::wp_editComment()`
* `wp_xmlrpc_server::wp_newComment()`
* `wp_xmlrpc_server::pingback_ping()`
* Hook parameters in:
* `get_comment_author`
* `comment_author`
* `get_comment_author_email`
* `author_email`
* `get_comment_author_link`
* `get_comment_author_IP`
* `get_comment_author_url`
* `comment_url`
* `get_comment_excerpt`
* `comment_excerpt`
* `get_comment_ID`
* `get_comment_type`
* `get_page_of_comment`
* `comment_{$new_status}_{$comment->comment_type}`
* `comment_post`
* `notify_moderator`
* `notify_post_author`
* `commentrss2_item`
* `xmlrpc_call_success_wp_deleteComment`
* `xmlrpc_call_success_wp_editComment`
* `xmlrpc_call_success_wp_newComment`
* `pingback_post`
Note: The name change only affects variable names and DocBlocks.
The change does not affect:
* `comment_ID` as the `$orderby` value in `WP_Comment_Query::__construct()`
* `comment_ID` as the `$orderby` value in `WP_Comment::get_children()`
* `comment_ID` as part of `$commentarr` parameter in `wp_update_comment()`
The associated array keys still match the database field.
Follow-up to [53723].
Props krunal265, costdev, SergeyBiryukov.
Fixes #57671. See #56791.
Built from https://develop.svn.wordpress.org/trunk@55308
git-svn-id: http://core.svn.wordpress.org/trunk@54841 1a063a9b-81f0-0310-95a4-ce76da25c4cd
122 lines
4.0 KiB
PHP
122 lines
4.0 KiB
PHP
<?php
|
|
/**
|
|
* RSS2 Feed Template for displaying RSS2 Comments feed.
|
|
*
|
|
* @package WordPress
|
|
*/
|
|
|
|
header( 'Content-Type: ' . feed_content_type( 'rss2' ) . '; charset=' . get_option( 'blog_charset' ), true );
|
|
|
|
echo '<?xml version="1.0" encoding="' . get_option( 'blog_charset' ) . '"?' . '>';
|
|
|
|
/** This action is documented in wp-includes/feed-rss2.php */
|
|
do_action( 'rss_tag_pre', 'rss2-comments' );
|
|
?>
|
|
<rss version="2.0"
|
|
xmlns:content="http://purl.org/rss/1.0/modules/content/"
|
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
|
xmlns:atom="http://www.w3.org/2005/Atom"
|
|
xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
|
|
<?php
|
|
/** This action is documented in wp-includes/feed-rss2.php */
|
|
do_action( 'rss2_ns' );
|
|
?>
|
|
|
|
<?php
|
|
/**
|
|
* Fires at the end of the RSS root to add namespaces.
|
|
*
|
|
* @since 2.8.0
|
|
*/
|
|
do_action( 'rss2_comments_ns' );
|
|
?>
|
|
>
|
|
<channel>
|
|
<title>
|
|
<?php
|
|
if ( is_singular() ) {
|
|
/* translators: Comments feed title. %s: Post title. */
|
|
printf( ent2ncr( __( 'Comments on: %s' ) ), get_the_title_rss() );
|
|
} elseif ( is_search() ) {
|
|
/* translators: Comments feed title. 1: Site title, 2: Search query. */
|
|
printf( ent2ncr( __( 'Comments for %1$s searching on %2$s' ) ), get_bloginfo_rss( 'name' ), get_search_query() );
|
|
} else {
|
|
/* translators: Comments feed title. %s: Site title. */
|
|
printf( ent2ncr( __( 'Comments for %s' ) ), get_wp_title_rss() );
|
|
}
|
|
?>
|
|
</title>
|
|
<atom:link href="<?php self_link(); ?>" rel="self" type="application/rss+xml" />
|
|
<link><?php ( is_single() ) ? the_permalink_rss() : bloginfo_rss( 'url' ); ?></link>
|
|
<description><?php bloginfo_rss( 'description' ); ?></description>
|
|
<lastBuildDate><?php echo get_feed_build_date( 'r' ); ?></lastBuildDate>
|
|
<sy:updatePeriod>
|
|
<?php
|
|
/** This filter is documented in wp-includes/feed-rss2.php */
|
|
echo apply_filters( 'rss_update_period', 'hourly' );
|
|
?>
|
|
</sy:updatePeriod>
|
|
<sy:updateFrequency>
|
|
<?php
|
|
/** This filter is documented in wp-includes/feed-rss2.php */
|
|
echo apply_filters( 'rss_update_frequency', '1' );
|
|
?>
|
|
</sy:updateFrequency>
|
|
<?php
|
|
/**
|
|
* Fires at the end of the RSS2 comment feed header.
|
|
*
|
|
* @since 2.3.0
|
|
*/
|
|
do_action( 'commentsrss2_head' );
|
|
|
|
while ( have_comments() ) :
|
|
the_comment();
|
|
$comment_post = get_post( $comment->comment_post_ID );
|
|
$GLOBALS['post'] = $comment_post;
|
|
?>
|
|
<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 );
|
|
/* translators: Individual comment title. 1: Post title, 2: Comment author name. */
|
|
printf( ent2ncr( __( 'Comment on %1$s by %2$s' ) ), $title, get_comment_author_rss() );
|
|
} else {
|
|
/* translators: Comment author title. %s: Comment author name. */
|
|
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 : ?>
|
|
<description><![CDATA[<?php comment_text_rss(); ?>]]></description>
|
|
<content:encoded><![CDATA[<?php comment_text(); ?>]]></content:encoded>
|
|
<?php endif; // End if post_password_required(). ?>
|
|
|
|
<?php
|
|
/**
|
|
* Fires at the end of each RSS2 comment feed item.
|
|
*
|
|
* @since 2.1.0
|
|
*
|
|
* @param int $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; ?>
|
|
</channel>
|
|
</rss>
|