Hola a todos,
Si yo ejecuto esto en sql de mi base de datos de wordpress me saca un campo llamado "img_url" que no puedo reproducir luego con un echo:
SELECT a.post_title title, max(c.guid) img_url, a.ID id
FROM wp_posts a
LEFT JOIN
(select post_parent, max(post_date_gmt) as latest_image_date from wp_posts
where post_type='attachment' GROUP BY post_parent) b
on a.id=b.post_parent
LEFT JOIN wp_posts c
on c.post_parent=a.id
and c.post_type='attachment'
and b.latest_image_date = c.post_date_gmt where c.guid IS NOT NULL
GROUP BY a.post_title ORDER BY a.ID DESC limit 5
_________
¿Alguien me puede decir dónde está ese campo, en qué tabla? Necesito sacar en php la url de la imagen.
Gracias.