HI,欢迎来到我爱模板网!

在开发WordPress企业主题时如何条用相关产品?

我们用wordpress开发企业主题的时候,如果有产品展示模块,那在浏览产品详情页的时候,我们经常会看到产品详情底部有一个相关产品显示。在开发WordPress企业主题时如何条用相关产品?其实对于这个模块我们并不陌生,因为在我们写文章详情页的时候,也写过调用当前文章的相关文章代码,在这里我贴一段在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 queryif($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%20the_permalink();%20?>"><?php the_post_thumbnail('product_thumb'); ?></a>    <a href="<?php%20the_permalink();%20?>"><?php the_title(); ?></a>    </li><?php    }    echo '</ul></div>';}else{    //no posts found}//restore original post datawp_reset_postdata();?>

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

wordpress主题文件加载顺序

2023-2-16 15:58:07

wordpress教程

WordPress在前端投稿表单里加入advanced custom fields自定义字段

2023-2-16 15:58:11

【腾讯云】11.11云上盛惠!云服务器首年1.8折起,买1年送3个月!
11.11云上盛惠!海量产品·轻松上云!云服务器首年1.8折起,买1年送3个月!超值优惠,性能稳定,让您的云端之旅更加畅享。
查看更多相关信息>>
站长

(工作日 10:00 - 22:30 为您服务)

2026-01-30 03:56:14

您好,无论是售前、售后、意见建议……均可通过联系工单与我们取得联系。

猜你想问:

  • 购买的模板免费包安装吗?

  • 这个演示地址有吗?

  • 购买vip会员可以下载哪些模板?

您的留言我们已经收到,我们将会尽快跟您联系!
取消
立即选择任一渠道联系我们