Answer the question
In order to leave comments, you need to log in
How to select the last 5 nodes using drupal views and sort them randomly?
Tell me, is there a way in drupal 7 views to select the latest 5 news, and then sort them randomly?
Thank you!
Answer the question
In order to leave comments, you need to log in
Output the last 5 nodes, shuffle with:
function hook_views_pre_render(&$view) {
shuffle($view->result);
}
And what exactly is the problem? Make a selection by the type of material, limit the output to 5 materials, and select global - random in sorting. Everything.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question