MP_BaseLeadSettings::add_lead_logs_field( string $lead )

Add lead Logs Metabox.


Parameters Parameters

$lead

(string) (Required) post type key


Top ↑

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

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.