| 2351 | | $stickies = $wpdb->get_results( "SELECT * FROM $wpdb->posts WHERE $wpdb->posts.ID IN ($stickies__in)" ); |
| | 2351 | // honor post type(s) if not set to any |
| | 2352 | $stickies_where = ''; |
| | 2353 | if ( 'any' != $post_type ) { |
| | 2354 | if ( is_array( $post_type ) ) { |
| | 2355 | $post_types = join( "', '", $post_type ); |
| | 2356 | } else { |
| | 2357 | $post_types = $post_type; |
| | 2358 | } |
| | 2359 | $stickies_where = "AND $wpdb->posts.post_type IN ('" . $post_types . "')"; |
| | 2360 | } |
| | 2361 | $stickies = $wpdb->get_results( "SELECT * FROM $wpdb->posts WHERE $wpdb->posts.ID IN ($stickies__in) $stickies_where" ); |