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