I need to be able to loop over only a section at a time to populate content for some Tabs. What would be the best way to loop over just the Videos array?
Videos
<?php $result = array(...); foreach( $result['videos'] as $video ) { // $video is each individual item in the videos array }