Answers for "get all the posts ids by category id"

PHP
0

how to get category from post id

get_the_category($post->ID)
Posted by: Guest on January-04-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

Code answers related to "get all the posts ids by category id"

Browse Popular Code Answers by Language