recent_entries.php
来自「php168开源网站系统」· PHP 代码 · 共 11 行
PHP
11 行
<h2>Recently</h2>
<ul class="dates">
<?php
// I love Wordpress so
query_posts('showposts=12');
?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<li><a href="<?php the_permalink() ?>"><span class="date"><?php the_time( $hemingway->date_format() ) ?></span> <?php the_title() ?> </a></li>
<?php endwhile; endif; ?>
</ul>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?