Answers for "get all posts id"

PHP
0

how to get category from post id

get_the_category($post->ID)
Posted by: Guest on January-04-2021
1

get all posts

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

wp get_posts return ids

get_posts(array(
    'fields'          => 'ids', // Only get post IDs
    'posts_per_page'  => -1
));
Posted by: Guest on August-02-2021

Browse Popular Code Answers by Language