wpseek.com
Uma área de pesquisa sobre o WordPress para devs e autores do tema



wp_category_checklist › WordPress Function

Desde2.5.1
Obsoleton/a
wp_category_checklist ( $post_id = 0, $descendants_and_self = 0, $selected_cats = false, $popular_cats = false, $walker = null, $checked_ontop = true )
Parâmetros: (6)
  • (int) $post_id Optional. Post to generate a categories checklist for. Default 0. $selected_cats must not be an array. Default 0.
    Required: No
    Padrão:
  • (int) $descendants_and_self Optional. ID of the category to output along with its descendants. Default 0.
    Required: No
    Padrão:
  • (int[]|false) $selected_cats Optional. Array of category IDs to mark as checked. Default false.
    Required: No
    Padrão: false
  • (int[]|false) $popular_cats Optional. Array of category IDs to receive the "popular-category" class. Default false.
    Required: No
    Padrão: false
  • (Walker) $walker Optional. Walker object to use to build the output. Default is a Walker_Category_Checklist instance.
    Required: No
    Padrão: null
  • (bool) $checked_ontop Optional. Whether to move checked items out of the hierarchy and to the top of the list. Default true.
    Required: No
    Padrão: true
Ver:
Definido em:
Codex:

Outputs an unordered list of checkbox input elements labeled with category names.



Fonte

function wp_category_checklist( $post_id = 0, $descendants_and_self = 0, $selected_cats = false, $popular_cats = false, $walker = null, $checked_ontop = true ) {
	wp_terms_checklist(
		$post_id,
		array(
			'taxonomy'             => 'category',
			'descendants_and_self' => $descendants_and_self,
			'selected_cats'        => $selected_cats,
			'popular_cats'         => $popular_cats,
			'walker'               => $walker,
			'checked_ontop'        => $checked_ontop,
		)
	);
}