• Hi,
    In php, how can I write a Category Title in a single item portfolio?
    You can help me?
    I can write only the list of categories, but I want the single category of the single item…

Viewing 1 replies (of 1 total)
  • Plugin Author Nikita

    (@nko)

    Hi.

    This one maybe:

    $categories = get_the_terms( get_the_ID(), 'portfolio_category' );
    
    if ( ! empty( $categories ) ) {
        echo esc_html( $categories[0]->name );   
    }
    

    Regards, nK.

Viewing 1 replies (of 1 total)
  • The topic ‘Category title in a single portfolio item’ is closed to new replies.