MP_BaseLeadSettings::add_address_metabox( string $lead )

Add Address Metabox.


Parameters Parameters

$lead

(string) (Required) post type key


Top ↑

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

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.