No products in the cart.
Access our premium support and let us know your problems, we will help you solve them.
This get all posts of a custom type using get_posts
:
$posts = get_posts([
'post_type' => 'custom',
'post_status' => 'publish',
'numberposts' => -1
// 'order' => 'ASC'
]);