In fact, I have two categories of news in my website. The first category is the important news, which is the main content of my website. It’s typically a loop of many posts that I control with astickypostorder. But in my sidebar, I have a second category of news ‘the short news’ (called with the tag immo in my code).
<?php query_posts('tag=immo&showposts=4');while (have_posts()) : the_post() ; ?>
This code aimed to display the short news in the date of their creation. Until now, these short news could be ranked in the two categories (sidebar + main content) when I decided it was a short but important news. Until the 3.1 update, the main content order was controlled by astickypostorder, and the ‘short news content’ was displayed in the order of the creation of the post.
But when I have updated WordPress to 3.1, AstickyPostOrder has bugged (there was no post proposed for ranking). First, I decided to reinstall 0.3 version of the plugin and delete the wp_croer table and wp_croer_meta in my sql table. It has worked for the main content, but in my short news category displayed in sidebar, all the news tagged immo and ranked too in the main content were displayed first.
I add a orderby=date in my code
<?php query_posts('orderby=date&tag=immo&showposts=4');while (have_posts()) : the_post() ; ?>
But it doesn’t worked too… In the same time, when I go in the tag ‘immo’ in the Astickypostorder menu, there are no content ranked at all in this section.