Inventory_Presser_Taxonomies::meta_box_html_type( mixed $post )

Outputs HTML that renders a meta box for the type taxonomy


Parameters

$post

(mixed) (Required)


Return

(void)


Source

File: includes/class-taxonomies.php

	public static function meta_box_html_type( $post ) {
		$html = self::taxonomy_meta_box_html( 'type', apply_filters( 'invp_prefix_meta_key', 'type' ), $post );
		// add an onchange attribute to the select.
		$html = str_replace( '<select', '<select onchange="invp_vehicle_type_changed( this.value );" ', $html );
		echo $html;
	}