我在网上找到了此代码。这是一个只显示带有图片的帖子的代码。现在的问题是,如果您将Wordpress设置为显示50篇文章,那么这段代码会显示包含图像的文章,但也会统计不包含图像的文章。
用其他词。。如果你的frontpage上有50篇文章,其中6篇是带有图像的,那么这个代码只显示6篇文章。
有人知道我怎样才能用图片显示50篇帖子(与WordPress中的设置相同)?
<?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;
?>