Query các bài viết có chứa comment trong WordPress

add_filter( 'posts_where', 'filter_where' );
$query = new WP_Query($args);
remove_filter( 'posts_where', 'filter_where' );

Where

function filter_where( $where = '' ) {
    $where .= " AND comment_count > 0 ";
    return $where;
}
Share this :