您现在的位置是:首页 > 教程 > 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无法使用the_content()方法输出内容的解决方法
在使用WordPress里在一个页面里我使用the_content()方法来输出当前页面的内容,但却显示为空,而标题,url等都没有问题 -
wordpress主题怎么在本地安装,本地安装wordpress主题的方法
首先是确认XAMPP的Apache和MysqL是否已经运行,没有运行的点击“Start”;现在打开Wordpress登录;进入Wordpress后台后,在“外观”当中的“主题”可以看到当前已经使用的主题 -
wordpress需要授权吗,wordpress是免费开源的吗
WordPress是使用PHP语言开发的博客平台,用户可以在支持PHP和MySQL数据库的服务器上架设属于自己的网站。 -
wordpress主题怎么安装,wordpress主题安装方法有哪些
1.登陆wordpress站点,点击外观-主题。2.点击添加,选择适合你的或者你喜欢的主题。3.安装,安装成功后可以在外观-主题里看到,使用点击启用即可。
留言与评论 (共有 条评论) |