这个脚本只循环显示带有图像的帖子,但我有一个问题。它没有显示正确数量的帖子公关页面。可能是因为它计算了帖子的总数量,包括没有图片的帖子。有人知道如何解决这个问题吗?
<?php
while ( have_posts() ) : the_post();
$content = $post->post_content;
$searchimages = \'~<img [^>]* />~\';
preg_match_all( $searchimages, $content, $pics );
$iNumberOfPics = count($pics[0]);
if ( $iNumberOfPics > 0 ) {
//your loop content goes here
}
endwhile;
?>
第二个问题:如果帖子中的图像是外部的,它也会显示损坏的图像。