Trying to get image URL from meta data of custom post

arcadeRob

I have a WordPress site that has custom posts and I am trying to output the metadata in a feed. The feed will be a json object but the problem that i am having is that for one of the fields for an image url has the value "field_53ecfb598628f". I have no idea what this is or how to get to the url for the image.

To get the value i am using the following code:

$terms = get_the_terms($post->ID, '_photos_0_photo');
if( !empty($terms) )
{
    $term = array_pop($terms);

    $custom_field = get_field('_photos_0_photo', $term );

    $test = $custom_field;

}

and $test would be set to "field_53ecfb598628f". How do I find my URL from this value?

Niels van Renselaar

I'm quite sure by this structure you are using Advanced Custom Fields for this custom meta fields. Therefor you should not use get_field("_photos_0_photo") but guessing by the field name get_field("photos").

By the name I'm guessing its the gallery or repeater field, so you should probably loop trough that, because it will return an array.

http://www.advancedcustomfields.com/resources/gallery/

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Trying to get user id and user meta data from WordPress database

From Dev

cakephp get the url of image from post

From Dev

Display WordPress Custom post by Meta Data

From Dev

Save custom post meta, not saving the data

From Dev

how to get image url in advanced custom field wordpress post

From Dev

how to get image url in advanced custom field wordpress post

From Dev

Django - Get POST data from other URL

From Dev

How to get WordPress post featured image from post ID in url

From Dev

How to get WordPress post featured image from post ID in url

From Dev

Trying to extract meta data from news article

From Dev

Wordpress - get the userID from custom user meta

From Dev

Get only image url from phpbb post text

From Dev

get meta description , title and image from url like facebook link sharing

From Dev

get meta description , title and image from url like facebook link sharing

From Dev

Kentico - Get absolute (full) url of image from custom page type

From Dev

get custom post meta inside input's value wordpress

From Dev

get_post_meta not showing the value of custom field when called

From Dev

Check for duplicate Wordpress Post with Custom Meta Data on Publish

From Dev

Display custom post meta data to wordpress menu item

From Dev

Get meta-data from manifest in UnitTest

From Dev

JS Get image directly from video stream as data url

From Dev

Trying to get data for POST method Retrofit

From Dev

web api post image with custom data

From Dev

Sort data by date in WordPress by using get_post_meta()

From Dev

Getting 'GET or POST' from url

From Dev

Adding tag and custom post meta

From Dev

Order by custom post meta date

From Dev

How to pull an image URL from a database and populate a Meta tag

From Dev

Get information from custom url

Related Related

  1. 1

    Trying to get user id and user meta data from WordPress database

  2. 2

    cakephp get the url of image from post

  3. 3

    Display WordPress Custom post by Meta Data

  4. 4

    Save custom post meta, not saving the data

  5. 5

    how to get image url in advanced custom field wordpress post

  6. 6

    how to get image url in advanced custom field wordpress post

  7. 7

    Django - Get POST data from other URL

  8. 8

    How to get WordPress post featured image from post ID in url

  9. 9

    How to get WordPress post featured image from post ID in url

  10. 10

    Trying to extract meta data from news article

  11. 11

    Wordpress - get the userID from custom user meta

  12. 12

    Get only image url from phpbb post text

  13. 13

    get meta description , title and image from url like facebook link sharing

  14. 14

    get meta description , title and image from url like facebook link sharing

  15. 15

    Kentico - Get absolute (full) url of image from custom page type

  16. 16

    get custom post meta inside input's value wordpress

  17. 17

    get_post_meta not showing the value of custom field when called

  18. 18

    Check for duplicate Wordpress Post with Custom Meta Data on Publish

  19. 19

    Display custom post meta data to wordpress menu item

  20. 20

    Get meta-data from manifest in UnitTest

  21. 21

    JS Get image directly from video stream as data url

  22. 22

    Trying to get data for POST method Retrofit

  23. 23

    web api post image with custom data

  24. 24

    Sort data by date in WordPress by using get_post_meta()

  25. 25

    Getting 'GET or POST' from url

  26. 26

    Adding tag and custom post meta

  27. 27

    Order by custom post meta date

  28. 28

    How to pull an image URL from a database and populate a Meta tag

  29. 29

    Get information from custom url

HotTag

Archive