首頁設計
$category_link1 = get_category_link('5');//重要資訊
$category_link2 = get_category_link('6');//榮譽榜
<div class="panel border-sub">
<a href="<?php echo $category_link1 ?>"><div class="panel-head border-sub bg-sub text-center"><strong>重要資訊</strong></div></a>
<table class="table table-striped">
<?php
$infopost_param = array (
'cat' => '5',
'posts_per_page' => '5',
);
$the_query = new WP_Query( $infopost_param );
if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post();
?>
<tr>
<td >
<h4><a href="<?php the_permalink(); ?>"><?php echo get_the_title(); ?></a></h4>
</td>
<td align="right"><a href="<?php the_permalink(); ?>"><h6>[<?php the_time('Y-m-d'); ?>]</h6></a></td></tr>
<?php
endwhile; endif;
wp_reset_postdata();
?>
<tr>
<td></td><td>
<a href="<?php echo $category_link2 ?>"><div class="text-right">更多...</div></a>
</td></tr></table>
</div><!-- end of panel border-sub -->