wpseek.com
A WordPress-centric search engine for devs and theme authors



dropdown_link_categories › WordPress Function

Since2.1.0
Deprecated2.6.0
dropdown_link_categories ( $default_link_category = 0 )
Parameters:
  • (int) $default_link_category Unused.
    Required: No
    Default:
See:
Defined at:
Codex:

Legacy function used to generate a link categories checklist control.



Source

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