2017-10-13 12 views
0

私は2時間の研究をしていてどこにも行っていません。おそらく、私は何を探しているのか分からない。WooCommerceフックintoカテゴリ情報

私はFlatsomeの最新バージョン(テーマ。)上で実行されているWooCommerceサイトを持っている

私は単純にループで各項目のカテゴリのリンクを取得し、カテゴリを開くためにCTAボタンを作成しようとしています。これはフラットホームのホームページのウィジェットです。

function ill_category_button() { 
    $link = "#"; 
    echo '<div class="add-to-cart-button"><a href="" . $link . "" rel="nofollow" data-product_id="386934" class=" add_to_cart_button product_type_variable button primary is-flat mb-0 is-small">Open Collection</a></div>'; 
} 

add_action('woocommerce_after_subcategory_title', 'ill_category_button'); 

enter image description here

答えて

0

製品カテゴリは、あなたがget_term_link()を使用してリンクをつかむために使用できるパラメータとしてあなたの関数に渡されます。

function ill_category_button($category) { 
    $link = get_term_link($category->term_id); 
    echo '<div class="add-to-cart-button"><a href="' . esc_url($link) . '" rel="nofollow" data-product_id="386934" class=" add_to_cart_button product_type_variable button primary is-flat mb-0 is-small">Open Collection</a></div>'; 
} 
add_action('woocommerce_after_subcategory_title', 'ill_category_button'); 
関連する問題