在 WooCommerce 中,我希望我的客户选择一个图像,当他们单击该图像时,该图像会将他们带到随机产品。
获取随机产品 id(数组):
$random_product_array = get_posts( array( 'posts_per_page' => 1, 'post_type' => 'product', 'orderby' => 'rand', 'fields' => 'ids' ) ); $random_product_id = reset($random_product_array); // Get the random product ID
显示随机产品的链接按钮:
echo '<a href= "www.mylink.com/“> <img alt= “mylink” src=https://www.mylink.com/images/promo pic.png get_permalink($random_product_id) . '" class="img alt">' width=150” height=“70”</a>';
尚方宝剑之说