How to fetch the Category id in WordPress

We can add categories in the insights menu option in wordpress.

These categories are able to view in Insights > Insights Category option in the dashboard of a wordpress page.

These categories can be used as contents in the themes as well.

So lets see how can we get the Id of these fields and use in our code for different actions.

How can we see the Id of each categories ?

By hovering over the contents in each block we can see the Id below the screen.

To fetch the contents Id,

<?php echo $category->cat_ID; ?>

Also we can use <?php echo $category-> name; ?> can be used to display its name as well.

Hope this article will be helpful. Thank You

Leave a comment

Your email address will not be published. Required fields are marked *