Changeset 19031
- Timestamp:
- 10/20/2011 09:41:54 PM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/taxonomy.php
r19025 r19031 2853 2853 foreach ( (array) $terms as $term ) { 2854 2854 2855 // Attachments can be 'inherit' status, we need to base count off the parent's sta us if so2855 // Attachments can be 'inherit' status, we need to base count off the parent's status if so 2856 2856 if ( in_array( 'attachment', $object_types ) ) 2857 2857 $count = $wpdb->get_var( $wpdb->prepare( "SELECT COUNT(*) FROM $wpdb->term_relationships, $wpdb->posts p1 WHERE p1.ID = $wpdb->term_relationships.object_id AND ( post_status = 'publish' OR ( post_status = 'inherit' AND post_parent > 0 AND ( SELECT post_status FROM $wpdb->posts WHERE ID = p1.post_parent ) = 'publish' ) ) AND post_type IN ('" . implode("', '", $object_types) . "') AND term_taxonomy_id = %d", $term ) );
Note: See TracChangeset
for help on using the changeset viewer.