次の場合、投稿の横に「NEW」という画像を表示したい:
- 1 ~ 45 日前に公開されました。
- 45 日後に「NEW」イメージを非表示/無効にします。
最新の 4 つの投稿を表示するカルーセルのコードは次のとおりです。
`<!------Begin Carousel Cusomizations-------->
<div class="list_carousel">
<a id="prev2" class="prev" href="#"><</a>
<ul id="foo2">
<?php
global $post;
$args = array( 'numberposts' => -1, 'post_type' => 'guides');
$posts = get_posts($args);
foreach( $posts as $post ) : setup_postdata($post); ?>
<li class="productCarousel" onclick="document.location.href='<?php echo the_permalink(); ?>';">
<div class="liContent">
<div class="ribbon"><div class="ribbon-new">New</div></div>
<div class="liPadding">
<?php the_post_thumbnail( array(75,75) ); ?>
<h4><?php the_title(); ?></h4>
<p><?php the_excerpt(); ?></p>
<p class="accessGuides"><a href="<?php echo the_permalink(); ?>">Access Guide</a></p>
</div>
</div>
</li>
<?php endforeach; ?>
</ul>
<a id="next2" class="next" href="#">></a>
<div class="clearfix"></div>
<div id="pager2" class="pager"></div>
</div>
</div>
<!----End Carousel Customizations----->`
DIV セクション: <div class="ribbon"><div class="ribbon-new">New</div></div>
「NEW」イメージ バナーのコンテナです。
どんな支援も大歓迎です!