WC_Payment_Gateway_CC::field_name( string $name )
Output field name HTML
Description Description
Gateways which support tokenization do not require names – we don’t want the data to post to the server.
Parameters Parameters
- $name
-
(Required) Field name.
Return Return
(string)
Source Source
File: includes/gateways/class-wc-payment-gateway-cc.php
public function field_name( $name ) { return $this->supports( 'tokenization' ) ? '' : ' name="' . esc_attr( $this->id . '-' . $name ) . '" '; }
Changelog Changelog
Version | Description |
---|---|
2.6.0 | Introduced. |