Support

Account

Home Forums General Issues Want to use get_post_meta instead of get_field for array Reply To: Want to use get_post_meta instead of get_field for array

  • Try this:

    $grabMeta = get_post_meta( $post->ID, 'my_key', true );
    
    $myvalues = unserialize( $grabMeta );
    
    foreach ( $myvalues as $myvalue ) { 
        echo $myvalue .', '; 
    }