Get Categories Wordpress Query

[Solved] Get Categories Wordpress Query | Php - Code Explorer | yomemimo.com
Question : get categories wordpress query

Answered by : bongani-khoza

<ul>
<?php global $post; $args = array( 'show_option_all' => '', 'orderby' => 'name', 'order' => 'ASC', 'show_count' => 0, 'hide_empty' => 1, 'use_desc_for_title' => 1, 'child_of' => 0, 'feed' => '', 'title_li' => '', 'feed_type' => '', 'feed_image' => '', 'exclude' => '', 'exclude_tree' => '', 'include' => '', 'hierarchical' => 1, 'echo' => 1, 'taxonomy' => 'category' ); $the_query = wp_list_categories( $args ); ?>
</ul>

Source : https://stackoverflow.com/questions/31087946/get-category-list-using-wordpress-query-from-post-in-wordpress | Last Update : Tue, 17 May 22

Answers related to get categories wordpress query

Code Explorer Popular Question For Php