MP_BaseLeadSettings::add_address_metabox( string $lead )
Add Address Metabox.
Contents
Parameters Parameters
- $lead
-
(string) (Required) post type key
Source Source
File: mortgage-platform/Inc/Base/MP_BaseLeadSettings.php
public function add_address_metabox( $lead ) {
add_meta_box(
'address-metabox',
__( 'Address', 'mortgage_platform' ),
array( $this, 'address_meta_callback' ),
$lead,
'normal',
'core'
);
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |