ตามโคดข้างล่างเราจะสามารถทำให้ในส่วนของ <div class="details"> ทำการวนลูปตามจำนวนที่เราต้องการได้ไหมครับ โดยให้ลูปแรกแสดงตามโค้ด ลูปต่อไปแสดงเฉพาะส่วน
<h4><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4>
<?php $my_query = new WP_Query('cat='. $gazpo_feat_cat_1.'&showposts=1'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class="box margin-right">
<h4 class="cat-title"><a href="<?php echo get_category_link($gazpo_feat_cat_1); ?>"><?php echo get_cat_name($gazpo_feat_cat_1);?></a></h4>
<div class="thumb">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_post_thumbnail( 'archive-image' ); ?>
</a>
</div>
<div class="details">
<h4><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4>
<p> <?php $content = get_the_content(); $content = strip_tags($content); echo mb_substr($content, 0, 150). '...'; ?></p>
</div>
</div>
<?php endwhile; ?>
** ตอนนี้บอร์ด โปรแกรม+ทำเว็บไปที่บอรด์ไหนดีครับ
ขอถามเกี่ยวกับโค้ด php หน่อยครับ พอดีพึ่งหัดทำ wordpress แล้วต้องการจะปรับการแสดงผลนิดหน่อย
<h4><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4>
<?php $my_query = new WP_Query('cat='. $gazpo_feat_cat_1.'&showposts=1'); ?>
<?php while ($my_query->have_posts()) : $my_query->the_post(); ?>
<div class="box margin-right">
<h4 class="cat-title"><a href="<?php echo get_category_link($gazpo_feat_cat_1); ?>"><?php echo get_cat_name($gazpo_feat_cat_1);?></a></h4>
<div class="thumb">
<a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>">
<?php the_post_thumbnail( 'archive-image' ); ?>
</a>
</div>
<div class="details">
<h4><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h4>
<p> <?php $content = get_the_content(); $content = strip_tags($content); echo mb_substr($content, 0, 150). '...'; ?></p>
</div>
</div>
<?php endwhile; ?>
** ตอนนี้บอร์ด โปรแกรม+ทำเว็บไปที่บอรด์ไหนดีครับ