template

woocommerce/active-product.php ↓
do_action( 'woocommerce_before_main_content' );

inc/wc-template-hook.php ↓
add_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 ); ↓
function woocommerce_output_content_wrapper()

wc_get_template( 'global/wrapper-start.php' );

Default Actions:

add_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
add_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 );

Remove Default Actions:

remove_action( 'woocommerce_before_main_content', 'woocommerce_output_content_wrapper', 10 );
remove_action( 'woocommerce_before_main_content', 'woocommerce_breadcrumb', 20 );

Add Custom Action:

add_action( 'woocommerce_before_main_content', 'your_custom_action', 15 );
function your_custom_action() {
echo 'Test';
}

ショップ

template

woocommerce/active-product.php ↓
do_action( 'woocommerce_before_main_content' );

/inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
@hooked woocommerce_output_content_wrapper - 10 (outputs opening divs for the content)
@hooked woocommerce_breadcrumb - 20
@hooked WC_Structured_Data::generate_website_data() - 30

Default Actions:

add_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
add_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );

Remove Default Actions:

remove_action( 'woocommerce_archive_description', 'woocommerce_taxonomy_archive_description', 10 );
remove_action( 'woocommerce_archive_description', 'woocommerce_product_archive_description', 10 );

Add Custom Action:

add_action( 'woocommerce_archive_description', 'your_custom_action', 15 );
function your_custom_action() {
echo 'Tset';
}

1件の結果を表示中

template

woocommerce/active-product.php ↓
do_action( 'woocommerce_before_shop_loop' );
@hooked woocommerce_output_all_notices - 10
@hooked woocommerce_result_count - 20
@hooked woocommerce_catalog_ordering - 30

/inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
add_action( 'woocommerce_before_shop_loop', 'storefront_sorting_wrapper', 9 );
add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 10 );
add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
add_action( 'woocommerce_before_shop_loop', 'storefront_woocommerce_pagination', 30 );
add_action( 'woocommerce_before_shop_loop', 'storefront_sorting_wrapper_close', 31 );
add_action( 'woocommerce_before_shop_loop', 'storefront_product_columns_wrapper', 40 );

Default Actions:

add_action( 'woocommerce_before_shop_loop', 'wc_print_notices', 10 );
add_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
add_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );

Remove Default Actions:

remove_action( 'woocommerce_before_shop_loop', 'wc_print_notices', 10 );
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_result_count', 20 );
remove_action( 'woocommerce_before_shop_loop', 'woocommerce_catalog_ordering', 30 );

Add Custom Action:

add_action( 'woocommerce_before_shop_loop', 'your_custom_action', 15 );
function your_custom_action() {
echo 'Test';
}

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-39 status-publish first instock product_cat-tshirts has-post-thumbnail taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    Tシャツ

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    ¥1,800 ¥1,800

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-40 status-publish instock product_cat-tshirts has-post-thumbnail taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    VネックTシャツ

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    ¥1,500 ¥1,500

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-31 status-publish last instock product_cat-accessories has-post-thumbnail sale taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    キャップ

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    セール ¥16 ¥16

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-32 status-publish first instock product_cat-accessories has-post-thumbnail featured taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    サングラス

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    ¥90 ¥90

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-35 status-publish instock product_cat-hoodies has-post-thumbnail featured taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    ジップ付きパーカー

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    ¥45 ¥45

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-36 status-publish last instock product_cat-hoodies has-post-thumbnail sale featured taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    パーカー

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    セール ¥42 ¥42

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-29 status-publish first instock product_cat-accessories has-post-thumbnail sale taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    ビーニー (ニット帽)

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    セール ¥18 ¥18

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-30 status-publish instock product_cat-accessories has-post-thumbnail sale taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    ベルト

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    セール ¥55 ¥55

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-34 status-publish last instock product_cat-hoodies has-post-thumbnail sale featured taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    ポケット付きパーカー

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    セール ¥35 ¥35

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-38 status-publish first instock product_cat-tshirts has-post-thumbnail taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    ポロシャツ

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    ¥20 ¥20

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-33 status-publish instock product_cat-hoodies has-post-thumbnail taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    ロゴ付きパーカー

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    ¥45 ¥45

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198

    Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
  • Deprecated: Creation of dynamic property WP_Term::$term_order is deprecated in /home/users/1/catfood.jp-bcchloe/web/www/woo/wp-includes/class-wp-term.php on line 198
    class="product type-product post-37 status-publish last instock product_cat-tshirts has-post-thumbnail taxable shipping-taxable purchasable product-type-simple">

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item' );

    /inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    plugins/woocommerce/includes/wc-template-functions.php ↓
    function woocommerce_template_loop_product_link_open()【not template override】

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item', 'woocommerce_template_loop_product_link_open', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_before_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 ); ↓
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 ); ↓
    woocommerce/includes/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    add_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_show_product_loop_sale_flash', 10 );
    remove_action( 'woocommerce_before_shop_loop_item_title', 'woocommerce_template_loop_product_thumbnail', 10 );

    Add Custom Action:

    add_action( 'woocommerce_before_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 ); ↓
    woocommerce/inc/wc-template-functions.php:

    Default Actions:

    add_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_shop_loop_item_title', 'woocommerce_template_loop_product_title', 10 );

    Add Custom Action:

    add_action( 'woocommerce_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Tset';
    }

    長袖Tシャツ

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/inc/wc-template-functions.php

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 );
    remove_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item_title', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    ¥25 ¥25

    template

    woocommerce/content-product.php ↓
    do_action( 'woocommerce_after_shop_loop_item_title' );
    do_action( 'woocommerce_after_shop_loop_item' );

    inc/wc-template-hook.php ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 ); ↓
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_price', 10 ); ↓
    add_action( 'woocommerce_after_shop_loop_item_title', 'woocommerce_template_loop_rating', 5 ); ↓
    woocommerce/includes/wc-template-functions.php

    woocommerce/includes/wc-template-functions.php ↓
    wc_get_template( 'loop/price.php' );
    wc_get_template( 'loop/rating.php' );

    Default Actions:

    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    add_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Remove Default Actions:

    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_product_link_close', 5 );
    remove_action( 'woocommerce_after_shop_loop_item', 'woocommerce_template_loop_add_to_cart', 10 );

    Add Custom Action:

    add_action( 'woocommerce_after_shop_loop_item', 'your_custom_action', 15 );
    function your_custom_action() {
    echo 'Test';
    }
    お買い物カゴに追加

1件の結果を表示中

template

woocommerce/active-product.php ↓
do_action( 'woocommerce_after_shop_loop' );
@hooked woocommerce_pagination - 10

/inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
add_action( 'woocommerce_after_shop_loop', 'storefront_sorting_wrapper', 9 );
add_action( 'woocommerce_after_shop_loop', 'woocommerce_catalog_ordering', 10 );
add_action( 'woocommerce_after_shop_loop', 'woocommerce_result_count', 20 );
add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 30 );
add_action( 'woocommerce_after_shop_loop', 'storefront_sorting_wrapper_close', 31 );
add_action( 'woocommerce_after_shop_loop', 'storefront_product_columns_wrapper_close', 40 );

Default Actions:

add_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );

Remove Default Actions:

remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );

Add Custom Action:

add_action( 'woocommerce_after_shop_loop', 'your_custom_action', 15 );
function your_custom_action() {
echo 'Test';
}

template

woocommerce/active-product.php ↓
do_action( 'woocommerce_after_main_content' );

/inc/woocommerce/storefront-woocommerce-template-hooks.php ↓
add_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 ); ↓
woocommerce/global/wrapper-end.php

Default Actions:

add_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );

Remove Default Actions:

remove_action( 'woocommerce_after_main_content', 'woocommerce_output_content_wrapper_end', 10 );

Add Custom Action:

add_action( 'woocommerce_after_main_content', 'your_custom_action', 15 );
function your_custom_action() {
echo 'Test';
}