dropdown_link_categories()WP 2.1.0

Deprecated from version 2.6.0. It is no longer supported and can be removed in future releases. Use wp_link_category_checklist() instead.

Legacy function used to generate a link categories checklist control.

No Hooks.

Return

null. Nothing (null).

Usage

dropdown_link_categories( $default_link_category );
$default_link_category(int)
Unused.

Notes

Changelog

Since 2.1.0 Introduced.
Deprecated since 2.6.0 Use wp_link_category_checklist()

dropdown_link_categories() code WP 6.5.2

function dropdown_link_categories( $default_link_category = 0 ) {
	_deprecated_function( __FUNCTION__, '2.6.0', 'wp_link_category_checklist()' );
	global $link_id;
	wp_link_category_checklist( $link_id );
}