classes/class-wetu-importer-tours.php 1 location
|
@@ 1201-1214 (lines=14) @@
|
| 1198 |
|
'cropping' => 'c', |
| 1199 |
|
) ); |
| 1200 |
|
|
| 1201 |
|
if ( false !== $temp_banner ) { |
| 1202 |
|
$this->banner_image = $temp_banner; |
| 1203 |
|
|
| 1204 |
|
delete_post_meta( $id,'image_group' ); |
| 1205 |
|
|
| 1206 |
|
$new_banner = array( |
| 1207 |
|
'banner_image' => array( |
| 1208 |
|
'cmb-field-0' => $this->banner_image, |
| 1209 |
|
), |
| 1210 |
|
); |
| 1211 |
|
|
| 1212 |
|
add_post_meta( $id,'image_group',$new_banner,true ); |
| 1213 |
|
$image_set = true; |
| 1214 |
|
} |
| 1215 |
|
} |
| 1216 |
|
|
| 1217 |
|
return $image_set; |
classes/class-wetu-importer.php 1 location
|
@@ 923-935 (lines=13) @@
|
| 920 |
|
|
| 921 |
|
} |
| 922 |
|
|
| 923 |
|
if ( false !== $temp_banner ) { |
| 924 |
|
$this->banner_image = $temp_banner; |
| 925 |
|
|
| 926 |
|
delete_post_meta( $id,'image_group' ); |
| 927 |
|
|
| 928 |
|
$new_banner = array( |
| 929 |
|
'banner_image' => array( |
| 930 |
|
'cmb-field-0' => $this->banner_image, |
| 931 |
|
), |
| 932 |
|
); |
| 933 |
|
|
| 934 |
|
add_post_meta( $id,'image_group',$new_banner,true ); |
| 935 |
|
} |
| 936 |
|
} |
| 937 |
|
} |
| 938 |
|
|