You appear to be a bot. Output may be restricted
Description
Apply the mapping
Apply the mapping to post meta data
Usage
OIK_clone_mapping::apply_mapping( $meta );
Parameters
- $meta
- ( mixed ) required –
Returns
void
Source
File name: oik-clone/admin/class-oik-clone-mapping.php
Lines:
1 to 9 of 9
function apply_mapping( $meta ) { $mapped = array(); foreach ( $meta as $value ) { $mapping = $this->get_mapping( $value ); $mapped[] = $mapping; } bw_trace2( $mapped, "mapped" ); return( $mapped ); }