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

2024-11-26 52阅读 0评论

代码如下:


<?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> 
<?php while ($wp_query->have_posts()) : $wp_query->the_post(); ?> 
<article> 
<time datetime="<?php the_time('Y-m-d') ?>" pubdate><?php the_time('F jS, Y') ?></time> 
<h1> 
<a rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"> 
<?php the_title(); ?> 
</a> 
</h1> 
<section> 
<?php the_content(); ?> 
</secion> 
</article> 
<?php endwhile;?> 
<div> 
<?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; 
?> 

文章版权声明:除非注明,否则均为奥多云原创文章,转载或复制请以超链接形式并注明出处。

发表评论

快捷回复: 表情:
评论列表 (暂无评论,52人围观)

还没有评论,来说两句吧...

取消
微信二维码
微信二维码
支付宝二维码