This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Reply To: get thumbs from serialied array

#28354
iloop19iloop19
Participant

The code below works ! but now i don’t have image that are not in a sub array.
not OK:
[image] => https://entreprises-uzes-pontdugard.fr/wp-content/uploads/listing-uploads/logo/2020/07/Logo-A2CP-web.jpg
OK:
[image] => Array
(
[0] => https://entreprises-uzes-pontdugard.fr/wp-content/uploads/listing-uploads/logo/2020/02/cartouche_blc.png
)

add_filter( ‘asp_results’, ‘asp_custom_image_results’, 10, 1 );
function asp_custom_image_results( $results ) {
$field_name = ‘_job_logo’;
foreach ($results as $k=>&$r) {
$field = get_post_meta( $r->id, $field_name , true );
if ( isset($field[0])) {$r->image = $field[0];} }

return $results;
}