in Education by
I'm using the new wordpress custom post types and fields. It's all working great, but for a custom image field (where I can select multiple images in one field), the value of this field when output is an array: <?php $field = get_post_meta($post->ID, "puma", false); echo $field[0]; ?> This results in the following output (there are 3 images here): 180|177|174 These are clearly the image ID's stored in the wp_posts table of the database. However, before I go mad trying to do this manually via an SQL query (hack), I was wondering if there is a better and more native way in wordpress to get the value of these or the proper way to output these images? Cheers, Michael. EDIT: Thanks to some help I got below, the final code for anybody who needs it is this: <?php $field = get_post_meta($post->ID, "myImageField", false); $str = $field[0] . "|"; // add an extra pipe at the end to get ALL the items (kinda tricking it. $theIDarray = explode('|', $str, -1); foreach ($theIDarray as $value) { echo wp_get_attachment_image($value, "myCustomImageSize"); } ?> This works for a custom field with multiple image selections for the 'content-types-wordpress-plugin'. Hope it helps those in need! JavaScript questions and answers, JavaScript questions pdf, JavaScript question bank, JavaScript questions and answers pdf, mcq on JavaScript pdf, JavaScript questions and solutions, JavaScript mcq Test , Interview JavaScript questions, JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)

1 Answer

0 votes
by
I think below function can return image, if you pass image id as parameter : echo wp_get_attachment_image($image_id)

Related questions

0 votes
    I'm using the new wordpress custom post types and fields. It's all working great, but for a custom image field (where ... below, the final code for anybody who needs it is this:...
asked Feb 27, 2022 in Education by JackTerrance
0 votes
    I have created a custom post type in wordpress called videos. When the admin adds a video he also ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked May 19, 2022 in Education by JackTerrance
0 votes
    I'm hosting a wordpress site on ec2 and I'm trying to update my theme through the admin screen. ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Aug 1, 2022 in Education by JackTerrance
0 votes
    I am using wordpress, and some pages are using page-template, which is almost full HTML without . Now ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jul 20, 2022 in Education by JackTerrance
0 votes
    I have laravel website and there is blog folder which contain wordpress blog. In my htaccess I want some ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 2, 2022 in Education by JackTerrance
0 votes
    How to sort wordpress results by category or taxonomy? I have this code: function ordenarResultados($query) ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 26, 2022 in Education by JackTerrance
0 votes
    I store many sub records as Map in the same top record, now I need remove some sub records ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 26, 2022 in Education by JackTerrance
0 votes
    I will be using Wordpress as a CMS with custom post types. Each "post" is a product and will ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 25, 2022 in Education by JackTerrance
0 votes
    What is an external ID in Salesforce? Which all field data types can be used as external IDs?...
asked Nov 11, 2020 in Technology by JackTerrance
0 votes
    I'm trying to assemble and display image slices which have been preloaded into a two dimensional array, but ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 16, 2022 in Education by JackTerrance
0 votes
    I am working on wordpress with woocommerce and using WCK plugin for custom fields. I am creating products ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Jun 18, 2022 in Education by JackTerrance
0 votes
    I followed the accepted answer here to alter the order of items in a foreign key select list in my ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 19, 2022 in Education by JackTerrance
0 votes
    I followed the accepted answer here to alter the order of items in a foreign key select list in my ... Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Feb 18, 2022 in Education by JackTerrance
0 votes
    I'm builtin an web resume-generator to learn how to develop for web. I've made a HTML form which ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 9, 2022 in Education by JackTerrance
0 votes
    I'm builtin an web resume-generator to learn how to develop for web. I've made a HTML form which ... JavaScript Questions for Interview, JavaScript MCQ (Multiple Choice Questions)...
asked Apr 9, 2022 in Education by JackTerrance
...