Nel tutorial di oggi imparerete come visualizzare una lista di categorie sulla sidebar con il calendario eventi di WordPress.
< ?php $taxonomy = 'tribe_events_cat'; $orderby = 'name'; $show_count = 0; // 1 for yes, 0 for no $pad_counts = 0; // 1 for yes, 0 for no $hierarchical = 1; // 1 for yes, 0 for no $title = ''; $args = array( 'taxonomy' => $taxonomy, 'orderby' => $orderby, 'show_count' => $show_count, 'pad_counts' => $pad_counts, 'hierarchical' => $hierarchical, 'title_li' => $title, 'exclude' => array(**enter number(s) to exclude separated by commas**) ); ?> <ul> < ?php wp_list_categories($args); ?> </ul>



Leave Your Response