Inventory_Presser_Taxonomies::meta_box_html_locations( mixed $post )

meta_box_html_locations


Description Description

Outputs HTML that renders a meta box for the location taxonomy


Top ↑

Parameters Parameters

$post

(mixed) (Required)


Top ↑

Return Return

(void)


Top ↑

Source Source

File: includes/class-taxonomies.php

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