0
「おすすめ画像」のサムネイル版を取得したい これは私が持っているコードですが、大きな画像を引っ張っています。MYSQLは特集画像を取得し、タイトルを掲示します
SELECT a.post_title title, max(c.guid) img_url, a.ID id, a.post_name
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
なぜこれはWPが既に提供している方法を使用するのではなく、独自のSQLクエリでこれを実行していますか? – CBroe