Answer the question
In order to leave comments, you need to log in
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
$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 questionAsk a Question
731 491 924 answers to any question