WordPress分类页

WordPress分类页 <?php get_header();?> <script typ…

WordPress分类页
<?php get_header();?>

<script type=”text/javascript”>
function jumurl(){
window.location.href = ‘http://www.pindushe.com/random’;
}
setTimeout(jumurl,5000);
</script><!– 定时跳转结束 –>

<div class=”listarticle”>
<center><h3>最近更新列表</h3>
<span style=”color:red;”>5秒后将为您随机推荐一篇文章</span></center>
<ul>
<?php
query_posts(array(
“category__in” => array(get_query_var(“cat”)),
“post__in” => get_option(“sticky_posts”),
)
);

?>

<?php while ( have_posts() ) : the_post(); ?>
<?php if(is_sticky()){?>
<li><span class=”new-ico” style=”background:red;”>置顶</span><a style=’color:#333;’ href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>” target=”_blank”><?php the_title(); ?></a>[<?php $category = get_the_category(); if($category[0]){ echo ‘<a href=’.get_category_link($category[0]->term_id ).’>’.$category[0]->cat_name.'</a>’;} ?>]<span class=”cat” style=”font-size:12px;”>由<?php echo get_the_author() ?> 发表于<?php echo get_the_date(‘Y-n-j D’); ?> <?php edit_post_link(‘编辑’, ”, ”); ?></span></li><?php }?>
<?php endwhile; ?>
<!– 置顶帖结束 –>
<?php wp_reset_query();?>
<?php while ( have_posts() ) : the_post(); ?>
<?php if(!is_sticky()){?>

<li><a style=’color:#333;’ href=”<?php the_permalink(); ?>” title=”<?php the_title(); ?>” target=”_blank”><?php the_title(); ?></a>[<?php $category = get_the_category(); if($category[0]){ echo ‘<a href=’.get_category_link($category[0]->term_id ).’>’.$category[0]->cat_name.'</a>’;} ?>]<span class=”cat” style=”font-size:12px;”>由<?php echo get_the_author() ?> 发表于<?php echo get_the_date(‘Y-n-j D’); ?> <?php edit_post_link(‘编辑’, ”, ”); ?></span></li>
<?php }?><?php endwhile ?>
</ul>
</div><?php pagenavi(); ?>
<?php get_footer();?>

 

类别:WordPress技巧

本文收集自互联网,转载请注明来源。
如有侵权,请联系 wper_net@163.com 删除。

评论 (0)COMMENT