WordPress主题开发实例:产品展⽰产品展⽰⽤到⽂章和缩略图功能
实现步骤:
⼀、创建分类
后台创建⽂章分类:产品中⼼
⼆、开启缩略图功能
在主题的functions.php中,添加⼀段代码,代码如下:
add_theme_support( 'post-thumbnails' );
更多设置请参考:
三、添加⽂章并设置缩略图
四:调⽤该分类信息、⽂章标题和缩略图
<div class="section sectionL">
<?php
$product_term =get_term_by('name','产品中⼼',category);
$product_term_id=$product_term->term_id;
$product_link=get_term_link($product_term_id,'category');
?>
<h2>
<a href="<?php echo $product_link?>">产品中⼼</a>
<span><a href="<?php echo $product_link;?>"></a></span>
</h2>
<ul>
<?php
$product_query=new WP_Query(array(
'cat'=>2,
wordpress主题开发手册'posts_per_page'=>8
));
if($product_query->have_posts()) : while($product_query->have_posts()) :$product_query->the_post(); ?>
<li>
<a href="<?php the_permalink();?>">
<?php if ( has_post_thumbnail() ) : ?>
<?php the_post_thumbnail( 'thumbnail' ); ?>
<?php else: ?>
//显⽰默认图⽚
<?php endif; ?>
</a>
<h3><a href="<?php the_permalink();?>"><?php the_title();?>dd</a></h3>
</li>
<?php endwhile;?>
<?php endif;?>
</ul>
</div>
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论