_

_

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

See hook in core

Displaying hooks found in version: woocommerce.8.7.0

do_action('_') is found 2 times:

  • /includes/class-wc-customer.php line 477
    				 * @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 596
    				 * @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;
    	}
    
    	/**