@
@
@samestexsy2016-09-29 10:32:30
PHP
@samestexsy, 2016-09-29 10:32:30

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

2 answer(s)
A
andead, 2016-09-29
_

Output the last 5 nodes, shuffle with:

function hook_views_pre_render(&$view) {
  shuffle($view->result);
}

A
Alexander Bukhalo, 2016-09-29
@evilsprut

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 question

Ask a Question

731 491 924 answers to any question