wordpress怎么实现自定义循环列表

来源:爱站网时间:2022-06-21编辑:网友分享
很多小伙伴问wordpress怎么实现自定义循环列表?带着这个问题,爱站技术频道小编为此整理了以下相关内容,如果你有需要请自行参考阅读,希望对你有所帮助。

代码如下:

<?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">
<time datetime="<?php the_time('Y-m-d') ?>" class="fs-14" pubdate><?php the_time('F jS, Y') ?></time>
<h1 class="fs-14 color-dark">
<a rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>" class="lnk-item">
<?php the_title(); ?>
</a>
</h1>
<section class="story hidden">
<?php the_content(); ?>
</secion>
</article>
<?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;
?>
</div>
</section>
<?php
endif;
?>

 

wordpress怎么实现自定义循环列表的相关内容想必朋友们都看明白了吧!希望小编整理的文章你能喜欢。关注爱站技术频道网站,每天带你了解不一样的技术内容。

上一篇:wordpress传送附件出现中文文件名乱码怎么处理

下一篇:改善WordPressCMS功能的插件

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载