parse_current_sections( $current_sections_array )
Description Description
Source Source
File: includes/class.llms.ajax.php
function parse_current_sections( $current_sections_array ) { $array = array(); foreach ( $current_sections_array[0] as $key => $value ) { foreach ( $value as $keys => $values ) { if ( 'section_id' == $keys ) { array_push( $array, $values ); } } } return $array; }
Expand full source code Collapse full source code View on GitHub
User Contributed Notes User Contributed Notes
Permalink: