精彩图片需要用到插件:
wp-thumbnails
最新缩略图设置:
宽度:110,高度100;显示数量:5;图片间距:10;标题:不显示
调用代码:
<?php if(function_exists(‘wp_thumbnails_for_recent_posts’)) { wp_thumbnails_for_recent_posts(); } ?>
调用分类目录下的新闻:
<?php $display_categories = array(1,3,4,130,6,7,8,5);
foreach ($display_categories as $category) { ?>
<div class=”P_category”>
<?php query_posts(“showposts=8&cat=$category”)?>
<h2 class=”P_c_one”><a href=”<?php echo get_category_link($category);?>”><?php single_cat_title(); ?></a></h2>
<ul class=”p_news”>
<?php while (have_posts()) : the_post(); ?>
<li>· <a href=”<?php the_permalink() ?>” title=”<?php the_title(); ?>”><?php echo mb_strimwidth(get_the_title(), 0, 40, ‘…’); ?>
</a> </li>
<?php endwhile; ?>
</ul>
</div>
<?php } wp_reset_query();?>
原文链接:https://i.haogew.cn/186.html,转载请注明出处~~~
评论0