AFTER a query for 1 category I receive details back. 1 category can have more items. The items have sequental id's but not in normal order.
While (category_items()) {
echo item_id(); // checking this give me for example id 1, 3 and 5.
}
I want to select one random item_id from these results.
Without adjusting the query itself.
Something like item_id() == 3 perhaps?
Is that possible?