Support

Account

Home Forums ACF PRO Getting post titles from serialized array of post IDs Reply To: Getting post titles from serialized array of post IDs

  • You should be able to do this

    
    $values = get_post_meta($postID,'applicable_resort',true); 
    foreach ($values as $value) { echo get_the_title($value).', '; }
    

    Let me know if that doesn’t work