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