wc_get_customer_saved_methods_list()
Get customer saved payment methods list.
Хуки из функции
Возвращает
Массив
.
Использование
wc_get_customer_saved_methods_list( $customer_id );
- $customer_id(int) (обязательный)
- Customer ID.
Список изменений
С версии 2.6.0 | Введена. |
Код wc_get_customer_saved_methods_list() wc get customer saved methods list WC 9.8.2
function wc_get_customer_saved_methods_list( $customer_id ) { return apply_filters( 'woocommerce_saved_payment_methods_list', array(), $customer_id ); // phpcs:ignore WooCommerce.Commenting.CommentHooks.MissingHookComment }