How can I display custom fields value from attachment media?

Use these:

get_post_meta($attachment->ID, '_title_en', true);
get_post_meta($attachment->ID, '_description_en', true);
get_post_meta($attachment->ID, '_title_es', true);
get_post_meta($attachment->ID, '_description_es', true);

See if you need to use the _ prefix:
Creating Custom Fields for Attachments in WordPress

Also: Function Reference/get post meta

Leave a Comment