Changes between Initial Version and Version 2 of Ticket #13365
- Timestamp:
- 11/13/2010 10:09:00 PM (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #13365
- Property Cc prodevstudio+wordpress@… added
-
Ticket #13365 – Description
initial v2 1 1 I have a template which is being used as my front page on WP 2.9.2. In this template I setup my loop with the following code: 2 {{{ $postresults = new WP_Query(); 2 3 {{{ 4 $postresults = new WP_Query(); 3 5 $postresults->query("author_name=frontpage&post_types=post&post_status=publish"); 4 6 while($postresults->have_posts()) { $postresults->the_post(); ?> 5 7 // etc... 6 8 }}} 9 7 10 I am not using the "caller_get_posts=1" option, but my sticky posts are still showing up in order with other posts rather than at the beginning. If I remove the "author_name=frontpage" the sticky posts will move back to the first items, however I am stuck with posts by authors I do not want. Using "author=2" results in the same behavior as using "author_name".