Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我们能否仅获取我们为其设置了特色图片的 wordpress 网站的那些页面的列表(或 ID)?
谢谢
这将抓取具有特色图像的所有页面并将其存储在变量中。
$loop = new WP_Query( array( 'post_type' => 'page', 'meta_key' => '_thumbnail_id' ) );