get_page_of_comment() fixes from Viper007Bond. see #7956

git-svn-id: http://svn.automattic.com/wordpress/trunk@9379 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2008-10-28 07:29:04 +00:00
parent b89e553492
commit 08998169ad
1 changed files with 12 additions and 14 deletions

View File

@ -194,8 +194,7 @@ function get_comments( $args = '' ) {
else else
$approved = "( comment_approved = '0' OR comment_approved = '1' )"; $approved = "( comment_approved = '0' OR comment_approved = '1' )";
if ( 'ASC' != $order ) $order = ( 'ASC' == $order ) ? 'ASC' : 'DESC';
$order = 'DESC';
$orderby = 'comment_date_gmt'; // Hard code for now $orderby = 'comment_date_gmt'; // Hard code for now
@ -484,6 +483,9 @@ function &separate_comments(&$comments) {
* Calculate the total number of comment pages. * Calculate the total number of comment pages.
* *
* @since 2.7.0 * @since 2.7.0
* @uses get_query_var() Used to fill in the default for $per_page parameter.
* @uses get_option() Used to fill in defaults for parameters.
* @uses Walker_Comment
* *
* @param array $comments Optional array of comment objects. Defaults to $wp_query->comments * @param array $comments Optional array of comment objects. Defaults to $wp_query->comments
* @param int $per_page Optional comments per page. * @param int $per_page Optional comments per page.
@ -523,22 +525,21 @@ function get_comment_pages_count( $comments = null, $per_page = null, $threaded
* Calculate what page number a comment will appear on for comment paging. * Calculate what page number a comment will appear on for comment paging.
* *
* @since 2.7.0 * @since 2.7.0
* @uses get_comment() Gets the full comment of the $comment_ID parameter.
* @uses get_option() Get various settings to control function and defaults.
* @uses get_page_of_comment() Used to loop up to top level comment.
* *
* @param int $comment_ID Comment ID. * @param int $comment_ID Comment ID.
* @param int $per_page Optional comments per page. * @param int $per_page Optional comments per page.
* @return int|null Comment page number or null on error. * @return int|null Comment page number or null on error.
*/ */
function get_page_of_comment( $comment_ID, $per_page = null, $threaded = null ) { function get_page_of_comment( $comment_ID, $per_page = null, $threaded = null ) {
$comment = get_comment( $comment_ID ); if ( !$comment = get_comment( $comment_ID ) )
if ( !$comment || 1 != $comment->comment_approved )
return; return;
if ( !get_option('page_comments') ) if ( !get_option('page_comments') )
return 1; return 1;
$comments = array_reverse( get_comments( array( 'post_id' => $comment->comment_post_ID ) ) );
if ( null === $per_page ) if ( null === $per_page )
$per_page = get_option('comments_per_page'); $per_page = get_option('comments_per_page');
@ -546,13 +547,10 @@ function get_page_of_comment( $comment_ID, $per_page = null, $threaded = null )
$threaded = get_option('thread_comments'); $threaded = get_option('thread_comments');
// Find this comment's top level parent if threading is enabled // Find this comment's top level parent if threading is enabled
if ( $threaded && 0 != $comment->comment_parent ) { if ( $threaded && 0 != $comment->comment_parent )
while ( 0 != $comment->comment_parent ) { return get_page_of_comment( $comment->comment_parent, $per_page, $threaded );
$comment = get_comment( $comment->comment_parent );
if ( !$comment || 1 != $comment->comment_approved ) $comments = get_comments( array( 'post_id' => $comment->comment_post_ID, 'order' => 'ASC' ) );
return;
}
}
// Start going through the comments until we find what page number the above top level comment is on // Start going through the comments until we find what page number the above top level comment is on
$page = 1; $page = 1;