Inventory_Presser_Taxonomies::meta_box_html_locations( mixed $post )

Outputs HTML that renders a meta box for the location taxonomy


Parameters

$post

(mixed) (Required)


Return

(void)


Source

File: includes/class-taxonomies.php

	public static function meta_box_html_locations( $post ) {
		printf(
			'%s<p><a href="edit-tags.php?taxonomy=location&post_type=%s">%s</a></p>',
			self::taxonomy_meta_box_html( 'location', apply_filters( 'invp_prefix_meta_key', 'location' ), $post ),
			esc_attr( INVP::POST_TYPE ),
			esc_html__( 'Manage locations', 'inventory-presser' )
		);
	}