Answers for "get_posts by id and post type"

PHP
0

how to get category from post id

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

wp_query post by category id

$args=array(
    'posts_per_page' => 50, 
    'post_type' => 'my_custom_type'
    'cat' => $cat_id,
);
$wp_query = new WP_Query( $args );
Posted by: Guest on June-20-2021

Browse Popular Code Answers by Language