如何为WordPress主题添加相关产品推荐?

WordPress企业主题开发中会使用到相关产品推荐,方便用户从当前页面跳转到其他产品页面,增加用户的购买兴趣,但是不是所有的WordPress主题带产品功能推荐,那么如何为WordPress主题添加相关产品推荐?

如何为WordPress主题添加相关产品推荐?

今天推荐大家一个常用的推荐同分类目录下文章的代码方式,只要将代码复制到文章底部,并对应添加我们的css样式就可以了,可以自由设置推荐文章数量和列表形式。代码如下:

<?php

//get the taxonomy terms of custom post type

$customTaxonomyTerms = wp_get_object_terms( $post->ID, ‘product_category’, array(‘fields’ => ‘ids’) );

//query arguments

$args = array(

‘post_type’ => ‘products’,

‘post_status’ => ‘publish’,

‘posts_per_page’ => 4,

‘orderby’ => ‘rand’,

‘tax_query’ => array(

array(

‘taxonomy’ => ‘product_category’,

‘field’ => ‘id’,

‘terms’ => $customTaxonomyTerms

)

),

‘post__not_in’ => array ($post->ID),

);

//the query

$relatedPosts = new WP_Query( $args );

//loop through query

if($relatedPosts->have_posts()){

echo ‘<div class=”related-products”>’;

echo ‘<h3>’ . __(‘Related Products’) . ‘</h3>’;

echo ‘<ul>’;

while($relatedPosts->have_posts()){

$relatedPosts->the_post();

?>

<li>

<a href=”<?php the_permalink(); ?>”><?php the_post_thumbnail(‘product_thumb’); ?></a>

<a href=”<?php the_permalink(); ?>”><?php the_title(); ?></a>

</li>

<?php

}

echo ‘</ul></div>’;

}else{

//no posts found

}

//restore original post data

wp_reset_postdata();

?>

给TA打赏
共{{data.count}}人
人已打赏
WP教程

宝塔上的WordPress网站如何优化服务器缓存?

2020-7-2 10:08:50

WP教程

如何解决wordpress恶意评论问题?

2020-7-2 10:31:36




重要声明

本站资源来自会员发布以及互联网收集,不代表本站立场,如有侵犯你的权益请联系管理员-车车站内发信联系 我们会第一时间进行审核删除。站内资源为网友个人学习或测试研究使用,未经原版权作者许可,禁止用于任何商业途径!请用户仔细辨认内容的真实性,避免上当受骗!本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。请在下载24小时内删除!


如果遇到付费才可观看的文章,建议升级终身VIP。全站所有资源任意下免费看”。本站资源少部分采用7z压缩,为防止有人压缩软件不支持7z格式,7z解压,建议下载7-zip,zip、rar解压,建议下载WinRAR

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索