• shafayshahid123

    (@shafayshahid123)


    hey there!, i need to get category name with their description in custom page of wordpress. Please have a look of image and let me guide how can i get all categories name, description and slug.Image Link

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

    (@nko)

    Hi.

    Something like this one:

    <?php
    $terms = get_terms(
        array(
            'taxonomy'   => 'portfolio_category',
            'hide_empty' => false,
        )
    );
    var_dump($terms);
    
Viewing 1 replies (of 1 total)
  • The topic ‘i need to get category name with their description in custom page of wordpress’ is closed to new replies.