php 最新文章 package customphp$this-widgetWidget_Contents_Post_RecentpageSize=10-to$recent;if$recent-havewhile$recent-nextlia href=php $recent-permalink;php $recent-title;aliphp endwhile; endif;文本居中美化一下表格
<?php
/**
* 最新文章
*
* @package custom
*/
?>
<style>
table {
width: 100%;
border-collapse: collapse;
text-align: center;
}
table td, table th {
border: 1px solid #ddd;
padding: 8px;
}
table th {
background-color: #f2f2f2;
}
</style>
<?php
$this->widget('Widget_Contents_Post_Recent', 'pageSize=10')->to($recent);
if ($recent->have()):
?>
<table>
<thead>
<tr>
<th>标题</th>
<th>发布时间</th>
</tr>
</thead>
<tbody>
<?php while ($recent->next()): ?>
<tr>
<td><a href="<?php $recent->permalink(); ?>"><?php $recent->title(); ?></a></td>
<td><?php $recent->date('Y-m-d'); ?></td>
</tr>
<?php endwhile; ?>
</tbody>
</table>
<?php endif; ?>
原文地址: https://www.cveoy.top/t/topic/bC19 著作权归作者所有。请勿转载和采集!