MP_BaseLeadSettings::add_gallery_metabox( string $lead )

Add Gallery Metabox.


Parameters Parameters

$lead

(string) (Required) post type key


Top ↑

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'
		);

	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.