WordPress通过连续的文章ID输入来调用几篇固定文章内容,这个方法非常适合刚入门的wordpress主题制作和开发新手,简单方便易用轻易就能达到很满意的定制效果,只要需要输入id用英文半角逗号分隔一下就可以连续的展示文章内容,下面大挖把这段代码分享出来,需要的老铁可以直接复制粘贴来用,这个功能在主题的制作中是非常实用的。比如可以用在hot文章内,或是侧边框的焦点文章又或是文章末尾的指定推荐。
下面的循环代码添加在需要的位置即可,DIV属性和函数根据您的个人主题情况添加或删除
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
<?php $posts = get_posts("numberposts=4&post_type=any&include=1,3,4,6"); if($posts) : foreach( $posts as $post ) : setup_postdata( $post ); ?> <li> <h2><a title="<?php the_title();?>" href="<?php the_permalink(); ?>" target="_blank"><?php the_title();?></a></h2> <div class="thumbnail"> <a title="<?php the_title();?>" href="<?php the_permalink(); ?>"><?php if((function_exists('has_post_thumbnail')) && (has_post_thumbnail())){$thumbnail_src = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()) );?><img src="<?php echo $thumbnail_src[0];?>"/><?php }else {?><img alt="<?php the_title();?>" src="<?php echo catch_that_image(); ?>"/><?php } ?></a> </div> <div class="views-con"> <p><?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 100,"……"); ?></p> </div> <div class="views-read"> <a title="<?php the_title();?>" href="<?php the_permalink(); ?>">大挖请看</a> </div> </li> <?php endforeach; endif; ?> |