Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. <?php wp_dropdown_categories( 'tab_index=25&taxonomy=ingredient-listing&name=ingredient-listing&show_option_none='.__('Choisir','FoodRecipe').'&hide_empty=0' ); ?>
  2.  
  3. <?php wp_category_checklist( 'tab_index=25&taxonomy=ingredient-listing&name=ingredient-listing&show_option_none='.__('Choisir','FoodRecipe').'&hide_empty=0' ); ?>
  4.  
  5. function wp_category_checklist( $post_id = 0, $descendants_and_self = 0, $selected_cats = false, $popular_cats = false, $walker = null, $checked_ontop = true ) {
  6. wp_terms_checklist( $post_id, array(
  7. 'taxonomy' => 'category',
  8. 'descendants_and_self' => $descendants_and_self,
  9. 'selected_cats' => $selected_cats,
  10. 'popular_cats' => $popular_cats,
  11. 'walker' => $walker,
  12. 'checked_ontop' => $checked_ontop
  13. ) );
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement