你可以使用get_posts
并搜索图像附件。
<?php
$images = get_posts(array(
\'post_parent\' => $the_parent_to_check, // whatever this is
\'post_type\' => \'attachment\', // attachments
\'post_mime_type\' => \'image\', // only image attachments
\'post_status\' => \'inherit\', // attachments have this status
));
if($images)
{
// has images
}
else
{
// no images. :(
}
编写自定义SQL查询以检查计数可能更有效。这取决于您是否要对附件帖子进行操作。