WooCommerce Добавление контента в пользовательскую конечную точку
add_action( 'woocommerce_account_my-stuff-endpoint_endpoint', 'gc_custom_endpoint_content' );
/**
* Custom Endpoint content
*/
function gc_custom_endpoint_content() {
echo 'custom end point content goes here';
}
Victorious Vole