How to get category list in wordpress -


get_the_category_list(); wp_list_categories(); 

above functions not working in project. can't new created categories in wordpress.

https://developer.wordpress.org/reference/functions/get_terms/

i recommend using get_terms

  $terms = get_terms( 'category', array(    'hide_empty' => false,   ) ); 

Comments

Popular posts from this blog

resizing Telegram inline keyboard -

command line - How can a Python program background itself? -

php - "cURL error 28: Resolving timed out" on Wordpress on Azure App Service on Linux -