Answers for "get all posts wordpress"

1

get all posts

$args = array(
  'numberposts' => 10,
  'post_type'   => 'book'
);
 
$latest_books = get_posts( $args );
Posted by: Guest on March-24-2021
0

wordpress get all custom posts

$posts = get_posts([
  'post_type' => 'custom',
  'post_status' => 'publish',
  'numberposts' => -1
  // 'order'    => 'ASC'
]);
Posted by: Guest on July-23-2021

Browse Popular Code Answers by Language