WordPress企业主题开发中相关产品调用代码

WordPress企业主题开发中相关产品调用代码

开发者在进行WordPress企业主题的时候,遇到有产品展示模块,需要在产品详情页底部做一个相关产品调用,今天就分享一个WordPress企业主题开发中相关产品调用代码。

<?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-6-24 9:52:36

WP教程

WordPress主题如何引用模板?

2020-6-24 10:18:35




重要声明

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


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

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