Downgrading to 3.9.8 is not helping
Thanks esmi for the fast suggestion.
There must be a way to call the adjacent post, plugins like post navigation do it.
query_posts() is maybe not the best solution, what about wp_query() or get_adjacent_post()?
But randomizing is a really cool idea, even maybe better.
the full php string might be useful
<?php
wp_reset_query();
query_posts(“showposts=2&offset=1”);
if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
thanks