加入收藏 | 设为首页 | 会员中心 | 我要投稿 安卓应用网 (https://www.0791zz.com/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 综合聚焦 > CMS系统 > 正文

wordpress自定义循环列表的php代码

发布时间:2020-05-23 19:49:22 所属栏目:CMS系统 来源:互联网
导读:wordpress自定义循环列表的php代码,使用wordpress的朋友需要自定义列表的朋友可以参考下。

<div class="msgborder" id="phpcode17"> <?php $epaged = (get_query_var('paged')) ? get_query_var('paged') : 1; $temp = $wp_query; $wp_query = null; ?> <?php $wp_query = new WP_Query('category_name=portfolio&tag=web&showposts=5&paged=' . $epaged);?> <?php if ($wp_query->have_posts()) : ?> <section class="itemBlocks"> <?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <article class="iBlock"> <h1 class="fs-14 color-dark"> <a rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>" class="lnk-item"> <?php the_title(); ?> <section class="story hidden"> <?php the_content(); ?> <?php endwhile;?> <div class="postsPaging"> <?php next_posts_link( ( '&larr; Older posts','twentyten' ) ); previous_posts_link( ( 'Newer posts &rarr;','twentyten' ) ); $wp_query = null; $wp_query = $temp; ?> <?php endif; ?>

(编辑:安卓应用网)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读