Last active
November 9, 2015 11:05
-
-
Save Fitoussi/e605e012afe7d9612d72 to your computer and use it in GitHub Desktop.
wp_dropdown_categories args
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| $args = array( | |
| 'show_option_all' => '', | |
| 'show_option_none' => '', | |
| 'orderby' => 'ID', | |
| 'order' => 'ASC', | |
| 'show_count' => 0, | |
| 'hide_empty' => 1, | |
| 'child_of' => 0, | |
| 'exclude' => '', | |
| 'echo' => 1, | |
| 'selected' => 0, | |
| 'hierarchical' => 0, | |
| 'name' => 'cat', | |
| 'id' => '', | |
| 'class' => 'postform', | |
| 'depth' => 0, | |
| 'tab_index' => 0, | |
| 'taxonomy' => 'category', | |
| 'hide_if_empty' => false, | |
| 'walker' => '' | |
| ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment