您现在的位置是:首页 > 教程 > WordPress教程WordPress教程
wordpress怎么做产品展示页
恨山2023-11-21 16:56:08WordPress教程已有人查阅
导读产品展示用到文章和缩略图功能实现步骤:一、创建分类后台创建文章分类:产品中心二、开启缩略图功能
产品展示用到文章和缩略图功能
实现步骤:
一、创建分类
后台创建文章分类:产品中心
二、开启缩略图功能
在主题的functions.php中,添加一段代码,代码如下:
四:调用该分类信息、文章标题和缩略图
实现步骤:
一、创建分类
后台创建文章分类:产品中心
二、开启缩略图功能
在主题的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,
'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>
本文标签:
很赞哦! ()
相关文章
随机图文
-
wordpress翻译英文的插件有哪些
现而今,最通用的语言当属英语。Ethnologue(民族语言网)在其2015年版用户手册中指出,在全球74亿人中,有近10亿人以某种形式说英语,有4亿人以英语为母语。 -
wordpress主题logo更换的方法
怎么更换wordpress主题logo这里介绍的只是有些主题的logo更换方法,现在的很多主题设置里都有logo设置 -
WordPress无法使用the_content()方法输出内容的解决方法
在使用WordPress里在一个页面里我使用the_content()方法来输出当前页面的内容,但却显示为空,而标题,url等都没有问题 -
wordpress中文字体的修改方法
使用国外的wordpress主题,通常都是使用的Google字体,但是你用在中文网站上后,中文字都是宋体,与网站的主题很不搭调,怎么修改呢?
留言与评论 (共有 条评论) |