dropdown_link_categories

Advertisement

Deprecated Deprecated

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

Summery Summery

Legacy function used to generate a link categories checklist control.

Syntax Syntax

dropdown_link_categories( int $default )

Parameters Parameters

$default

(Required) Unused.

Source Source

File: wp-admin/includes/deprecated.php

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

Advertisement

Changelog Changelog

Changelog
Version Description
2.6.0 Use wp_link_category_checklist()
2.1.0 Introduced.

See also See also

Advertisement

Leave a Reply