Warning: This function has been deprecated. Use wp_link_category_checklist() instead.

dropdown_link_categories( int $default_link_category )

Legacy function used to generate a link categories checklist control.


Description

Top ↑

See also


Top ↑

Parameters

$default_link_category int Required
Unused.

Top ↑

Source

File: wp-admin/includes/deprecated.php. View all references

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


Top ↑

Changelog

Changelog
Version Description
2.6.0 Use wp_link_category_checklist()
2.1.0 Introduced.

Top ↑

User Contributed Notes

You must log in before being able to contribute a note or feedback.