Inventory_Presser_Taxonomies::meta_box_html_type( mixed $post )

meta_box_html_type


Description Description

Outputs HTML that renders a meta box for the type taxonomy


Top ↑

Parameters Parameters

$post

(mixed) (Required)


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/class-taxonomies.php

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