<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN"
"http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="content-type" content="text/html; charset=utf-8" /><style type="text/css"><!--
#msg dl { border: 1px #006 solid; background: #369; padding: 6px; color: #fff; }
#msg dt { float: left; width: 6em; font-weight: bold; }
#msg dt:after { content:':';}
#msg dl, #msg dt, #msg ul, #msg li, #header, #footer { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt;  }
#msg dl a { font-weight: bold}
#msg dl a:link    { color:#fc3; }
#msg dl a:active  { color:#ff0; }
#msg dl a:visited { color:#cc6; }
h3 { font-family: verdana,arial,helvetica,sans-serif; font-size: 10pt; font-weight: bold; }
#msg pre { overflow: auto; background: #ffc; border: 1px #fc0 solid; padding: 6px; }
#msg ul, pre { overflow: auto; }
#header, #footer { color: #fff; background: #636; border: 1px #300 solid; padding: 6px; }
#patch { width: 100%; }
#patch h4 {font-family: verdana,arial,helvetica,sans-serif;font-size:10pt;padding:8px;background:#369;color:#fff;margin:0;}
#patch .propset h4, #patch .binary h4 {margin:0;}
#patch pre {padding:0;line-height:1.2em;margin:0;}
#patch .diff {width:100%;background:#eee;padding: 0 0 10px 0;overflow:auto;}
#patch .propset .diff, #patch .binary .diff  {padding:10px 0;}
#patch span {display:block;padding:0 10px;}
#patch .modfile, #patch .addfile, #patch .delfile, #patch .propset, #patch .binary, #patch .copfile {border:1px solid #ccc;margin:10px 0;}
#patch ins {background:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[17667] trunk/wp-includes: Allow retrieving comments by post type, status,
  author, author, name, or parent.</title>
</head>
<body>

<div id="msg">
<dl>
<dt>Revision</dt> <dd><a href="http://trac.wordpress.org/changeset/17667">17667</a></dd>
<dt>Author</dt> <dd>ryan</dd>
<dt>Date</dt> <dd>2011-04-20 18:02:41 +0000 (Wed, 20 Apr 2011)</dd>
</dl>

<h3>Log Message</h3>
<pre>Allow retrieving comments by post type, status, author, author, name, or parent.  Fetch only published posts for recent comments widget. Props filosofo. fixes <a href="http://trac.wordpress.org/ticket/16506">#16506</a> <a href="http://trac.wordpress.org/ticket/12904">#12904</a></pre>

<h3>Modified Paths</h3>
<ul>
<li><a href="#trunkwpincludescommentphp">trunk/wp-includes/comment.php</a></li>
<li><a href="#trunkwpincludesdefaultwidgetsphp">trunk/wp-includes/default-widgets.php</a></li>
</ul>

</div>
<div id="patch">
<h3>Diff</h3>
<a id="trunkwpincludescommentphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/comment.php (17666 => 17667)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/comment.php        2011-04-20 17:43:01 UTC (rev 17666)
+++ trunk/wp-includes/comment.php        2011-04-20 18:02:41 UTC (rev 17667)
</span><span class="lines">@@ -213,6 +213,11 @@
</span><span class="cx">                         'parent' =&gt; '',
</span><span class="cx">                         'post_ID' =&gt; '',
</span><span class="cx">                         'post_id' =&gt; 0,
</span><ins>+                        'post_author' =&gt; '',
+                        'post_name' =&gt; '',
+                        'post_parent' =&gt; '',
+                        'post_status' =&gt; '',
+                        'post_type' =&gt; '',
</ins><span class="cx">                         'status' =&gt; '',
</span><span class="cx">                         'type' =&gt; '',
</span><span class="cx">                         'user_id' =&gt; '',
</span><span class="lines">@@ -319,6 +324,13 @@
</span><span class="cx">                 if ( '' !== $search )
</span><span class="cx">                         $where .= $this-&gt;get_search_sql( $search, array( 'comment_author', 'comment_author_email', 'comment_author_url', 'comment_author_IP', 'comment_content' ) );
</span><span class="cx"> 
</span><ins>+                $post_fields = array_filter( compact( array( 'post_author', 'post_name', 'post_parent', 'post_status', 'post_type', ) ) );
+                if ( ! empty( $post_fields ) ) {
+                        $join = &quot;JOIN $wpdb-&gt;posts ON $wpdb-&gt;posts.ID = $wpdb-&gt;comments.comment_post_ID&quot;;
+                        foreach( $post_fields as $field_name =&gt; $field_value )
+                                $where .= $wpdb-&gt;prepare( &quot; AND {$wpdb-&gt;posts}.{$field_name} = %s&quot;, $field_value );
+                }
+
</ins><span class="cx">                 $pieces = array( 'fields', 'join', 'where', 'orderby', 'order', 'limits' );
</span><span class="cx">                 $clauses = apply_filters_ref_array( 'comments_clauses', array( compact( $pieces ), &amp;$this ) );
</span><span class="cx">                 foreach ( $pieces as $piece )
</span></span></pre></div>
<a id="trunkwpincludesdefaultwidgetsphp"></a>
<div class="modfile"><h4>Modified: trunk/wp-includes/default-widgets.php (17666 => 17667)</h4>
<pre class="diff"><span>
<span class="info">--- trunk/wp-includes/default-widgets.php        2011-04-20 17:43:01 UTC (rev 17666)
+++ trunk/wp-includes/default-widgets.php        2011-04-20 18:02:41 UTC (rev 17667)
</span><span class="lines">@@ -640,7 +640,7 @@
</span><span class="cx">                 if ( ! $number = absint( $instance['number'] ) )
</span><span class="cx">                          $number = 5;
</span><span class="cx"> 
</span><del>-                $comments = get_comments( array( 'number' =&gt; $number, 'status' =&gt; 'approve' ) );
</del><ins>+                $comments = get_comments( array( 'number' =&gt; $number, 'status' =&gt; 'approve', 'post_status' =&gt; 'publish' ) );
</ins><span class="cx">                 $output .= $before_widget;
</span><span class="cx">                 if ( $title )
</span><span class="cx">                         $output .= $before_title . $title . $after_title;
</span></span></pre>
</div>
</div>

</body>
</html>