Get The Post Categories From Outside The Loop

[Solved] Get The Post Categories From Outside The Loop | Php - Code Explorer | yomemimo.com
Question : Get the Post Categories From Outside the Loop

Answered by : indonesia-people

<?php
$post = get_post();
if ( $post ) {
    $categories = get_the_category( $post->ID );
    var_dump( $categories );
}

Source : https://developer.wordpress.org/reference/functions/get_the_category/ | Last Update : Wed, 11 May 22

Answers related to get the post categories from outside the loop

Code Explorer Popular Question For Php