2023-12-25 4次
// 文章ID
<?php the_ID(); ?>
// 文章链接
<?php the_permalink(); ?>
// 文章标题
<?php the_title(); ?>
// 文章分类
<?php the_category(','); ?>
// 文章作者
<?php the_author(); ?>
// 文章时间
<?php the_time( 'Y-m-d' ); ?>
// 文章内容
<?php the_content(); ?>