Support

Account

Home Forums Feature Requests Reverse Order button for the Repeater plugin Reply To: Reverse Order button for the Repeater plugin

  • Okay I see..

    I think this would be a feature pretty much noone uses tho. And you can easily achieve a reverse order yourself with just:

    
    $repeater = get_field('fieldname');
    if( $repeater ){
    
    $reversed = array_reverse($repeater);
    
    foreach( $reversed as $imagerow ){
    
    }
    
    }