1
在WooCommerce中,我試圖添加一個顯示所有產品的選擇。我正在使用下面的代碼:WooCommerce - 將產品網址添加到下拉列表
<select onchange="this.options[this.selectedIndex].value && (window.location = this.options[this.selectedIndex].value);">
<option value="">- Select Value - </option>
<?php
$args = array('post_type' => 'product');
$loop = new WP_Query($args);
while ($loop->have_posts()) :
$loop->the_post();
echo '<option value="#">'.the_title('','',false).'</option>';
endwhile;
?>
</select>
這可以工作,但我無法找到一種方法也將產品鏈接添加到選項值。
我已經試過了標準的永久鏈接代碼和
$url = get_permalink($product_id);
但它不工作。
你從哪裏得到$ product_id?在你的循環裏面沒有那樣的東西。 – Alice