Definition:
function wp_category_checklist( $post_id = 0, $descendants_and_self = 0, $selected_cats = false, $popular_cats = false, $walker = null, $checked_ontop = true ) {}
Parameters
- unknown_type $post_id
- unknown_type $descendants_and_self
- unknown_type $selected_cats
- unknown_type $popular_cats
- $walker
- $checked_ontop
Source code
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
));
}
3457

February 12, 2011 


No comments yet... Be the first to leave a reply!