wpseek.com
Un motore di ricerca WordPress per sviluppatori e autori di temi



get_category_to_edit › WordPress Function

Da2.0.0
Deprecaton/a
get_category_to_edit ( $id )
Parametri:
  • (int) $id
    Richiesto:
Ritorna:
  • (object)
Definito a:
Codex:

Gets category object for given ID and 'edit' filter context.



Sorgenti

function get_category_to_edit( $id ) {
	$category = get_term( $id, 'category', OBJECT, 'edit' );
	_make_cat_compat( $category );
	return $category;
}