Access our premium support and let us know your problems, we will help you solve them.

0
No products in the cart.

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts
  • in reply to: WordPress: get all posts of a custom type #9969
    blankandrea
    Participant

    This get all posts of a custom type using get_posts:

    $posts = get_posts([
      'post_type' => 'custom',
      'post_status' => 'publish',
      'numberposts' => -1
      // 'order'    => 'ASC'
    ]);
    
Viewing 1 post (of 1 total)