Woocommerce添加到购物车按钮Listify主题

时间:2018-08-20 16:20:41

标签: php wordpress woocommerce

我试图在Listify主题上添加自定义按钮,他们建议我在 function.php 中使用以下代码:

<?php

function custom_listify_single_job_listing_actions_after() {
   echo '<a href="#" class="button">My Button</a>';
}

add_filter( 
   'listify_single_job_listing_actions_after', 
   'custom_listify_single_job_listing_actions_after' 
);

我已将代码修改为此:

<?php

function custom_listify_single_job_listing_actions_after() { 

  echo ' 
     <a href="listing/highrise-shared-bedroom/?add-to-cart="150"" 
        data-quantity="1" 
        class="button product_type_simple add_to_cart_button ajax_add_to_cart" 
        data-product_id="150"
     >
        My Button
     </a>
   ';
}

add_filter(
   'listify_single_job_listing_actions_after', 
   'custom_listify_single_job_listing_actions_after' 
);

问题:

这很好,但我的问题是这仅适用于该产品,原因是id=150data-product_id="150"

目标:

我需要data-product_id="150"作为变量,或者150应该是产品ID。

谢谢

0 个答案:

没有答案