M
M
MRcracker2020-04-17 11:30:22
WordPress
MRcracker, 2020-04-17 11:30:22

How to display specific categories by id?

How to display certain categories on the page by id?

Answer the question

In order to leave comments, you need to log in

1 answer(s)
D
Denis Yanchevsky, 2020-04-17
@MRcracker

$cats = get_categories( array( 'include' => array( 3, 4, 6 ) ) );

if( $cats ) {
  foreach( $cats as $cat ) {
    echo $cat->name;
  }
}

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question