woocommerce_my_account_edit_address_title
Usage
add_filter( 'woocommerce_my_account_edit_address_title', 'wp_kama_woocommerce_my_account_edit_address_title_filter', 10, 2 );
/**
* Function for `woocommerce_my_account_edit_address_title` filter-hook.
*
* @param $page_title
* @param $load_address
*
* @return
*/
function wp_kama_woocommerce_my_account_edit_address_title_filter( $page_title, $load_address ){
// filter...
return $page_title;
}
- $page_title
- -
- $load_address
- -
Where the hook is called
woocommerce_my_account_edit_address_title
woocommerce/templates/myaccount/form-edit-address.php 30
<h2><?php echo apply_filters( 'woocommerce_my_account_edit_address_title', $page_title, $load_address ); ?></h2><?php // @codingStandardsIgnoreLine ?>