How Do I Find the Category ID of a Current Post in WordPress?

In order to find the category ID of a current post in WordPress, you can use the following code:

category_ID = get_the_ID();

For example, if you wanted to find the category ID for the current post “Hello World!”, you would use the following code:

category_ID = 5;.