Changeset 14404 for trunk/wp-includes/query.php
- Timestamp:
- 05/03/2010 08:26:11 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/query.php
r14402 r14404 1720 1720 $q['name'] = $q[ $ptype_obj->query_var ]; 1721 1721 } else { 1722 // Hierarchical post_types will operate through the 1722 // Hierarchical post_types will operate through the 1723 1723 $q['pagename'] = $q[ $ptype_obj->query_var ]; 1724 1724 $q['name'] = ''; … … 2483 2483 foreach ( $stickies as $sticky_post ) { 2484 2484 // Ignore sticky posts the current user cannot read or are not published. 2485 if ( 'publish' != $sticky_post->post_status ) 2485 if ( 'publish' != $sticky_post->post_status ) 2486 2486 continue; 2487 2487 array_splice($this->posts, $sticky_offset, 0, array($sticky_post));
Note: See TracChangeset
for help on using the changeset viewer.