_

_

Appears in: , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , ,
Hook Type: action

See hook in core

Displaying hooks found in version: woocommerce.9.8.1

do_action('_') is found 2 times:

  • /includes/class-wc-customer.php line 477
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
                 * @since 3.6.0
                 * @param string      $value    The address property value.
                 * @param WC_Customer $customer The customer object being read.
                 */
                $value = apply_filters( $this->get_hook_prefix() . $address_type . '_' . $prop, $value, $this );
            }
        }
        return $value;
    }
     
    /**
  • /includes/class-wc-order.php line 630
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
                 * @since 3.6.0
                 * @param string   $value The address property value.
                 * @param WC_Order $order The order object being read.
                 */
                $value = apply_filters( $this->get_hook_prefix() . $address_type . '_' . $prop, $value, $this );
            }
        }
        return $value;
    }
     
    /**