抱歉,我对 WordPress 编码和从头开始学习它还很陌生。请原谅我缺乏经验。
我有一个名为“产品”的自定义帖子类型,并且只想在主页中将它们显示为基于日期的存档。但是,我不想显示帖子标题或帖子中的任何其他内容,除了该日期前三个或四个帖子的特色。像这样的东西:
我正在尝试以下代码,但它将帖子作为正常循环返回。
<?php $query = new WP_Query( array('post_type' => 'products', 'orderby' => 'date') ); ?>
<?php if ( $query->have_posts() ) : ?>
<?php /* Start the Loop */ ?>
<?php while ( $query->have_posts() ) : $query->the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<?php
$archive_year = get_the_time('Y');
$archive_month = get_the_time('m');
$archive_day = get_the_time('d');
?>
<div class="idpostdate">
<a href="<?php echo get_day_link( $archive_year, $archive_month, $archive_day); ?>"><?php the_date( 'F j, Y', '', '<span class="datetext">: Click Here To View Products</span>', true );?></a>
</div>
<div class="thumbnail">
<?php if ( has_post_thumbnail() ) { the_post_thumbnail('homet'); } ?>
</article>
<?php endwhile; ?>
<?php else : ?>
<?php get_template_part( 'no-results', 'index' ); ?>
<?php endif; ?>
有什么指导吗?