woocommerce_my_account_my_orders_title filter-hook . WC 1.0
Usage
add_filter( 'woocommerce_my_account_my_orders_title', 'filter_function_name_2355' ); function filter_function_name_2355( $esc_html__ ){ // filter... return $esc_html__; }
- $esc_html__
- -
Where the hook is called
In file: /templates/myaccount/my-orders.php
woocommerce_my_account_my_orders_title
woocommerce/templates/myaccount/my-orders.php 37
<h2><?php echo apply_filters( 'woocommerce_my_account_my_orders_title', esc_html__( 'Recent orders', 'woocommerce' ) ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></h2>