Reji kumar
Reji kumar

Reputation: 298

Get category id's from post id in wordpress

A post is linked with many categories.Is there any way to list all category id which the post is connected?

Upvotes: 0

Views: 1966

Answers (1)

Paul
Paul

Reputation: 1422

You can use get_the_terms to achieve this, you need to pass the post id and taxonomy and terms will be returned in an array.

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

Upvotes: 1

Related Questions