Answer the question
In order to leave comments, you need to log in
How to display custom post type with categories?
There is a code that displays a custom post type:
<?php
$args=array(
'post_type' => 'products',
);
$products = get_posts($args);
foreach ($products as $post) :
setup_postdata($post);
?>
<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
<?php endforeach; ?>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question