900字范文,内容丰富有趣,生活中的好帮手!
900字范文 > wordpress调用指定分类文章 – WP模板教程 – 前端

wordpress调用指定分类文章 – WP模板教程 – 前端

时间:2019-12-19 15:35:25

相关推荐

wordpress调用指定分类文章 – WP模板教程 – 前端

方法一:

<ul><?php$args=array(cat=>1,//分类IDposts_per_page=>10,//显示篇数);query_posts($args);if(have_posts()):while(have_posts()):the_post();?><li><ahref="<?phpthe_permalink();?>"><?phpthe_title();?></a>//标题<span><?phpif(has_excerpt()){echo$description=get_the_excerpt();//文章编辑中的摘要}else{echomb_strimwidth(strip_tags(apply_filters( he_content,$post->post_content)),0,170,"……");//文章编辑中若无摘要,自定截取文章内容字数做为摘要}?></span></li><?phpendwhile;endif;wp_reset_query();?></ul>

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。