當前位置:主頁 > 網(wǎng)站建設(shè) > wordpress調(diào)用指定分類文章,搭建網(wǎng)站
wordpress調(diào)用指定分類文章,搭建網(wǎng)站
導讀:搭建網(wǎng)站搭建網(wǎng)站
- <ul>
- <?php
- $args=array(
- 'cat' => 1, // 分類ID
- 織夢模板網(wǎng)站'posts_per_page' => 10, // 顯示篇數(shù)
- );
- query_posts($args);
- if(have_posts()) : while (have_posts()) : the_post();
- ?>
- <li>
- <a href="<?php the_permalink(); ?>"><?php the_title(); ?></a> //標題
- <span>
- <?php if (has_excerpt()) {
- echo $description = get_the_excerpt(); //文章編輯中的摘要
- }else {&n織夢的模板bsp;
- echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 170,"……"); //文章編輯中若無摘要,自定截取文章內(nèi)容字數(shù)做為摘要
- } ?>
- </span>
- </li>
- <?php endwhile; endif; wp_reset_query(); ?>
- </ul> 相關(guān)信息技術(shù)網(wǎng)站網(wǎng)站開發(fā)技術(shù)。
聲明: 本文由我的SEOUC技術(shù)文章主頁發(fā)布于:2023-07-23 ,文章wordpress調(diào)用指定分類文章,搭建網(wǎng)站主要講述文章,div,wordpress網(wǎng)站建設(shè)源碼以及服務(wù)器配置搭建相關(guān)技術(shù)文章。轉(zhuǎn)載請保留鏈接: http://www.bifwcx.com/article/web_34921.html