<?php
$archive_year = get_the_time(\'Y\');
$archive_month = get_the_time(\'m\');
$archive_day = get_the_time(\'d\');
?>
<a href="<?php echo get_day_link( $archive_year, $archive_month, $archive_day); ?>"><?php the_date(\'Y/m/d\'); ?></a>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
HTML结果:
<a href="http://example.com/2015/09/07">2015/09/07</a>
<a href="http://example.com/title-post">Title Post</a>
例如,如果要显示最新帖子:
global $post;
$post_args = array(
\'posts_per_page\' => 5
);
$the_query = new WP_Query( $post_args );
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
$archive_year = get_the_time(\'Y\');
$archive_month = get_the_time(\'m\');
$archive_day = get_the_time(\'d\');
?>
<a href="<?php echo get_day_link( $archive_year, $archive_month, $archive_day); ?>"><?php the_date(\'Y/m/d\'); ?></a>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
}
wp_reset_query();
}