wordpress 文章输出相关函数
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post(); ?>
<?php if ( is_sticky() ) : ?>
<?php endif; ?>
<?php the_time(‘m月d日’) ; ?>
<?php the_title(); ?>
<?php the_permalink() ?>
<?php comments_popup_link('没有评论','1条评论','%条评论'); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
<?php pagination($query_string); ?>