admin管理员组文章数量:1406943
I want my category first post to have a photo and the other of the category posts don't have photos
What am I doing wrong? EDIT: Or is this even possible?
<?php query_posts('cat=' . get_option('theme_cat_name"') . '&showposts=' . get_option('theme_cat_count')); ?>
<?php $count = 0; ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php $count++; ?>
<?php if ($count == 1) : ?>
<?php the_post_thumbnail( 'carousel-thumb', array( 'class' => 'img-fluid hvr-grow ' ) ); ?>
<h2><?php the_title(); ?></h2>
<?php else : ?>
<h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
<?php endif; ?>
<?php endwhile; ?>
<?php endif; ?>
本文标签: phpHow to get all first images of posts in same category
版权声明:本文标题:php - How to get all first images of posts in same category? 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744938028a2633307.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论