7折
减价出售
¥799
使用的是query_posts查询
比如说用如下的文章查询
<?php
query_posts(array('post_type'=>'hx_post','posts_per_page'=>4, 'orderby' => 'ID', 'order' => 'DESC' ));
while ( have_posts() ) : the_post();
?>
<a>
<div class="img"><?php the_post_thumbnail();?> </div>
<h3 class="title"><?php the_title();?></h3>
<?php the_content();?>
<h4><a href="#">想在这里显示自己注册的分类名</a></h4>
</a>
<?php endwhile;?>
这种的wordpress主题调用方式和常规的分类调用方式是一样的,相当于是获取置顶文章的分类信息。
get_the_category(postid)
这样就可以了,代码如下
<?php
query_posts(array('post_type'=>'hx_post','posts_per_page'=>4, 'orderby' => 'ID', 'order' => 'DESC' ));
while ( have_posts() ) : the_post();
?>
<div>
<div class="img"><?php the_post_thumbnail();?> </div>
<h3 class="title"><?php the_title();?></h3>
<?php the_content();?>
<h4><a href="#"><?php current(get_the_category(get_the_ID()))->name ?></a></h4>
</div>
<?php endwhile;?>
减价出售
减价出售
减价出售
减价出售
电话咨询
133-7205-6573
微信咨询